ToolJet/plugins/packages/mssql/lib/operations.json
Muhsin Shah C P 604bfe819a
Added bulk update feature to SQL data source (#3100)
* Added bulk update feature

* refactored the code
2022-05-24 11:46:45 +05:30

80 lines
No EOL
2.1 KiB
JSON

{
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/operations.schema.json",
"title": "Mysql data query schema",
"description": "A schema defining mysql data query",
"type": "database",
"defaults": {},
"properties": {
"mode": {
"label": "",
"key": "mode",
"type": "dropdown-component-flip",
"description": "Single select dropdown for mode",
"list": [
{
"name": "SQL mode",
"value": "sql"
},
{
"name": "GUI mode",
"value": "gui"
}
]
},
"sql": {
"query": {
"key": "query",
"type": "codehinter",
"description": "Enter query",
"height": "150px"
}
},
"gui": {
"operation": {
"label": "Operation",
"key": "operation",
"type": "dropdown-component-flip",
"description": "Single select dropdown for mode",
"list": [
{
"name": "Bulk update using primary key",
"value": "bulk_update_pkey"
}
]
},
"bulk_update_pkey": {
"table": {
"label": "Table",
"key": "table",
"type": "codehinter",
"lineNumbers": false,
"description": "Enter table",
"width": "320px",
"height": "36px",
"className": "codehinter-plugins",
"placeholder": "Enter table"
},
"primary_key_column": {
"label": "Primary key column",
"key": "primary_key_column",
"type": "codehinter",
"lineNumbers": false,
"description": "Enter primary key column",
"width": "320px",
"height": "36px",
"className": "codehinter-plugins",
"placeholder": "Enter Enter primary key column"
},
"records": {
"label": "Records to update",
"key": "records",
"type": "codehinter",
"description": "Enter records",
"height": "150px",
"placeholder": "{{ [ ] }}"
}
}
}
},
"required": []
}