2021-11-17 17:59:00 +00:00
|
|
|
{
|
2022-01-27 05:25:16 +00:00
|
|
|
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/operations.schema.json",
|
2021-11-17 17:59:00 +00:00
|
|
|
"title": "Mysql datasource",
|
|
|
|
|
"description": "A schema defining Mysql datasource",
|
2022-01-17 07:08:17 +00:00
|
|
|
"type": "database",
|
2021-11-22 08:22:32 +00:00
|
|
|
"defaults": {},
|
2021-11-17 17:59:00 +00:00
|
|
|
"properties": {
|
|
|
|
|
"mode": {
|
2022-01-17 07:08:17 +00:00
|
|
|
"label": "",
|
|
|
|
|
"key": "mode",
|
2021-11-17 17:59:00 +00:00
|
|
|
"type": "dropdown-component-flip",
|
|
|
|
|
"description": "Single select dropdown for mode",
|
2022-01-17 07:08:17 +00:00
|
|
|
"list": [
|
2022-01-27 05:25:16 +00:00
|
|
|
{
|
|
|
|
|
"name": "SQL mode",
|
|
|
|
|
"value": "sql"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "GUI mode",
|
|
|
|
|
"value": "gui"
|
|
|
|
|
}
|
2021-11-17 17:59:00 +00:00
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"sql": {
|
|
|
|
|
"query": {
|
2022-01-17 07:08:17 +00:00
|
|
|
"key": "query",
|
2021-11-17 17:59:00 +00:00
|
|
|
"type": "codehinter",
|
2021-11-21 04:14:26 +00:00
|
|
|
"description": "Enter query",
|
|
|
|
|
"height": "150px"
|
2021-11-17 17:59:00 +00:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"gui": {
|
|
|
|
|
"operation": {
|
2022-01-17 07:08:17 +00:00
|
|
|
"label": "Operation",
|
|
|
|
|
"key": "operation",
|
2021-11-17 17:59:00 +00:00
|
|
|
"type": "dropdown-component-flip",
|
|
|
|
|
"description": "Single select dropdown for mode",
|
2022-01-17 07:08:17 +00:00
|
|
|
"list": [
|
2021-11-17 17:59:00 +00:00
|
|
|
{
|
|
|
|
|
"name": "Bulk update using primary key",
|
|
|
|
|
"value": "bulk_update_pkey"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"bulk_update_pkey": {
|
|
|
|
|
"table": {
|
2022-01-17 07:08:17 +00:00
|
|
|
"label": "Table",
|
|
|
|
|
"key": "table",
|
2021-11-17 17:59:00 +00:00
|
|
|
"type": "codehinter",
|
|
|
|
|
"lineNumbers": false,
|
2022-02-02 16:59:57 +00:00
|
|
|
"description": "Enter table",
|
|
|
|
|
"width": "320px",
|
|
|
|
|
"height": "36px",
|
|
|
|
|
"className": "codehinter-plugins",
|
|
|
|
|
"placeholder": "Enter table"
|
|
|
|
|
|
2021-11-17 17:59:00 +00:00
|
|
|
},
|
|
|
|
|
"primary_key_column": {
|
2022-01-17 07:08:17 +00:00
|
|
|
"label": "Primary key column",
|
|
|
|
|
"key": "primary_key_column",
|
2021-11-17 17:59:00 +00:00
|
|
|
"type": "codehinter",
|
|
|
|
|
"lineNumbers": false,
|
2022-02-02 16:59:57 +00:00
|
|
|
"description": "Enter primary key column",
|
|
|
|
|
"width": "320px",
|
|
|
|
|
"height": "36px",
|
|
|
|
|
"className": "codehinter-plugins",
|
|
|
|
|
"placeholder": "Enter primary key column"
|
2021-11-17 17:59:00 +00:00
|
|
|
},
|
|
|
|
|
"records": {
|
2022-01-17 07:08:17 +00:00
|
|
|
"label": "Records",
|
|
|
|
|
"key": "records",
|
2021-11-17 17:59:00 +00:00
|
|
|
"type": "codehinter",
|
2021-11-21 04:14:26 +00:00
|
|
|
"description": "Enter records",
|
|
|
|
|
"height": "150px"
|
2021-11-17 17:59:00 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-01-27 05:25:16 +00:00
|
|
|
}
|