mirror of
https://github.com/n8n-io/n8n.git
synced 2026-06-02 17:57:06 +02:00
23 lines
472 B
TypeScript
23 lines
472 B
TypeScript
import type { INodeProperties } from 'n8n-workflow';
|
|
|
|
export const databricksSqlOperations: INodeProperties = {
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['databricksSql'],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
name: 'Execute Query',
|
|
value: 'executeQuery',
|
|
description: 'Execute a SQL query and wait for results',
|
|
action: 'Execute a SQL query',
|
|
},
|
|
],
|
|
default: 'executeQuery',
|
|
};
|