ToolJet/plugins/packages/graphql/lib/operations.json
Kiran Ashok 4723bfe8e7
fix : Codehinter bugs (#9350)
* fix : Preview on parameters is not visible.

* fix : data source codehinter breaking

* fix : current value copy button.(copying different values)

* fix : select suggestions using mouse closes the preview box.

* fix : multiline preview

* fix: darkmode

* fixes:
- multi-line suggestions on different line numbers
- extended single line editor for json body

* cleanup

* handle multiple resolver references with hints

* fix : codehinter position

* fix : data source codehinters

* fix : woocommerce

* bugfix : bigquery

* fix : Selecting options from suggestion cleareing the values from  input fielsds.

* fix : parmeter list not opening

* datasource going back to defaults bug

* fix : datasource resetting issue

---------

Co-authored-by: arpitnath <arpitnath42@gmail.com>
2024-04-15 15:02:33 +05:30

36 lines
No EOL
958 B
JSON

{
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/operations.schema.json",
"title": "Graphql data query schema",
"description": "A schema defining graphql data query",
"type": "api",
"defaults": {},
"properties": {
"query": {
"label": "Query",
"key": "query",
"type": "codehinter",
"description": "Enter query",
"height": "150px",
"editorType": "extendedSingleLine"
},
"variables": {
"label": "Variables",
"key": "variables",
"type": "codehinter",
"description": "Enter Variables",
"height": "150px",
"editorType": "extendedSingleLine"
},
"headers": {
"label": "Headers",
"key": "headers",
"type": "react-component-headers",
"description": "key-value pair headers for graphql api",
"height": "150px",
"editorType": "extendedSingleLine"
}
},
"required": [
"query"
]
}