Files
probo/packages/n8n-node/nodes/Probo/actions/execute/index.ts
Bryan Frimin d710f5af73 Fix style
Signed-off-by: Bryan Frimin <bryan@getprobo.com>
2025-12-02 14:12:58 +01:00

30 lines
568 B
TypeScript

import type { INodeProperties } from 'n8n-workflow';
import * as executeOp from './execute.operation';
export const description: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
displayOptions: {
show: {
resource: ['execute'],
},
},
options: [
{
name: 'Execute',
value: 'execute',
description: 'Execute a GraphQL query or mutation',
action: 'Execute graphql',
},
],
default: 'execute',
},
...executeOp.description,
];
export { executeOp as execute };