mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 10:31:15 +00:00
* ⚡ setup * ⚡ finished v2 setup * ⚡ fix return all, fix simplify with nested schema * ⚡ fix for external tables, updated scopes * ⚡ query operation * ⚡ linter fixes * ⚡ fixed not processed errors when inserting, move main loop to execute function to allow bulk request * ⚡ customizible batch size when inserting, improoved errors * ⚡ options for mapping input * ⚡ fix for inserting RECORD type * ⚡ updated simplify logic * ⚡ fix for return with selected fields * ⚡ option to return table schema * ⚡ linter fixes * ⚡ fix imports * ⚡ query resource and fixes, rlc for projects * ⚡ removed simplify, added raw output option * ⚡ rlc for tables and datasets, no urls option * ⚡ updated hints and description of query parameter, fix getMany VIEW, multioptions fo fields * ⚡ added case when rows are empty * ⚡ linter fixes * ⚡ UI update, one resource * ⚡ fix for output with field named json * ⚡ using jobs instead queries * ⚡ added error message * ⚡ search for RLCs, fixes * ⚡ json processing * ⚡ removed getAll operation * ⚡ executeQuery update * ⚡ unit test * ⚡ tests setup, fixes * ⚡ tests * Remove script for checking unused loadOptions --------- Co-authored-by: agobrech <ael.gobrecht@gmail.com>
65 lines
1.2 KiB
TypeScript
65 lines
1.2 KiB
TypeScript
import type { INodeProperties } from 'n8n-workflow';
|
|
import { datasetRLC, projectRLC, tableRLC } from '../commonDescriptions/RLC.description';
|
|
import * as insert from './insert.operation';
|
|
import * as executeQuery from './executeQuery.operation';
|
|
|
|
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,
|
|
];
|