Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
66 lines
1.2 KiB
TypeScript
66 lines
1.2 KiB
TypeScript
import type { INodeProperties } from 'n8n-workflow';
|
|
|
|
import * as executeQuery from './executeQuery.operation';
|
|
import * as insert from './insert.operation';
|
|
import { datasetRLC, projectRLC, tableRLC } from '../commonDescriptions/RLC.description';
|
|
|
|
export { executeQuery, insert };
|
|
|
|
export const description: INodeProperties[] = [
|
|
{
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['database'],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
name: 'Execute Query',
|
|
value: 'executeQuery',
|
|
description: 'Execute a SQL query',
|
|
action: 'Execute a SQL query',
|
|
},
|
|
{
|
|
name: 'Insert',
|
|
value: 'insert',
|
|
description: 'Insert rows in a table',
|
|
action: 'Insert rows in a table',
|
|
},
|
|
],
|
|
default: 'executeQuery',
|
|
},
|
|
{
|
|
...projectRLC,
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['database'],
|
|
operation: ['executeQuery', 'insert'],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
...datasetRLC,
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['database'],
|
|
operation: ['insert'],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
...tableRLC,
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['database'],
|
|
operation: ['insert'],
|
|
},
|
|
},
|
|
},
|
|
...executeQuery.description,
|
|
...insert.description,
|
|
];
|