n8n/packages/nodes-base/nodes/Databricks/test/databricks-sql-polling.workflow.json
Garrit Franke 76af1e6fd9
feat(databricks Node): Add basic databricks node (#27004)
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-23 08:16:41 +00:00

57 lines
1.0 KiB
JSON

{
"name": "Databricks SQL Polling Test Workflow",
"nodes": [
{
"parameters": {},
"type": "n8n-nodes-base.manualTrigger",
"typeVersion": 1,
"position": [0, 0],
"id": "trigger-001",
"name": "When clicking 'Execute workflow'"
},
{
"parameters": {
"warehouseId": {
"mode": "id",
"value": "warehouse123"
},
"query": "SELECT id, name FROM test_table"
},
"type": "n8n-nodes-base.databricks",
"typeVersion": 1,
"position": [220, 0],
"id": "sql-execute-002",
"name": "Execute SQL Polling",
"credentials": {
"databricksApi": {
"id": "cred-001",
"name": "Databricks account"
}
}
}
],
"pinData": {
"Execute SQL Polling": [
{ "json": { "id": "1", "name": "Alice" } },
{ "json": { "id": "2", "name": "Bob" } }
]
},
"connections": {
"When clicking 'Execute workflow'": {
"main": [
[
{
"node": "Execute SQL Polling",
"type": "main",
"index": 0
}
]
]
}
},
"active": false,
"settings": {
"executionOrder": "v1"
}
}