mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-23 14:38:00 +00:00
16 lines
379 B
JSON
16 lines
379 B
JSON
|
|
{
|
||
|
|
"$schema": "https://json-schema.org/",
|
||
|
|
"$id": "https://tooljet.io/dataqueries/Graphql.schema.json",
|
||
|
|
"title": "Graphql data query schema",
|
||
|
|
"description": "A schema defining graphql data query",
|
||
|
|
"type": "object",
|
||
|
|
"properties": {
|
||
|
|
"query": {
|
||
|
|
"$key": "query",
|
||
|
|
"type": "codehinter",
|
||
|
|
"description": "Enter query"
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"required": ["query"]
|
||
|
|
}
|