2021-11-17 17:59:00 +00:00
|
|
|
{
|
|
|
|
|
"$schema": "https://json-schema.org/",
|
|
|
|
|
"$id": "https://tooljet.io/dataqueries/Postgresql.schema.json",
|
|
|
|
|
"title": "Postgresql datasource",
|
|
|
|
|
"description": "A schema defining Postgresql datasource",
|
|
|
|
|
"type": "object",
|
2021-11-22 08:22:32 +00:00
|
|
|
"defaults": {
|
|
|
|
|
"mode": "sql"
|
|
|
|
|
},
|
2021-11-17 17:59:00 +00:00
|
|
|
"properties": {
|
|
|
|
|
"mode": {
|
|
|
|
|
"$label": "",
|
|
|
|
|
"$key": "mode",
|
|
|
|
|
"type": "dropdown-component-flip",
|
|
|
|
|
"description": "Single select dropdown for mode",
|
|
|
|
|
"$options": [
|
|
|
|
|
{ "name": "SQL mode", "value": "sql" },
|
|
|
|
|
{ "name": "GUI mode", "value": "gui" }
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"sql": {
|
|
|
|
|
"query": {
|
|
|
|
|
"$key": "query",
|
|
|
|
|
"type": "codehinter",
|
2021-11-21 04:14:26 +00:00
|
|
|
"description": "Enter query",
|
2021-12-28 07:28:05 +00:00
|
|
|
"height": "150px"
|
2021-11-17 17:59:00 +00:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"gui": {
|
|
|
|
|
"operation": {
|
|
|
|
|
"$label": "Operation",
|
|
|
|
|
"$key": "operation",
|
|
|
|
|
"type": "dropdown-component-flip",
|
|
|
|
|
"description": "Single select dropdown for mode",
|
|
|
|
|
"$options": [
|
|
|
|
|
{
|
|
|
|
|
"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"
|
|
|
|
|
},
|
|
|
|
|
"primary_key_column": {
|
|
|
|
|
"$label": "Primary key column",
|
|
|
|
|
"$key": "primary_key_column",
|
|
|
|
|
"type": "codehinter",
|
|
|
|
|
"lineNumbers": false,
|
|
|
|
|
"description": "Enter primary key column"
|
|
|
|
|
},
|
|
|
|
|
"records": {
|
|
|
|
|
"$label": "Records to update",
|
|
|
|
|
"$key": "records",
|
|
|
|
|
"type": "codehinter",
|
2021-11-20 01:33:36 +00:00
|
|
|
"description": "Enter records",
|
2021-11-21 04:14:26 +00:00
|
|
|
"height": "150px",
|
2021-11-20 01:33:36 +00:00
|
|
|
"placeholder": "{{ [ ] }}"
|
2021-11-17 17:59:00 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|