Add measure operations

Signed-off-by: Bryan Frimin <bryan@getprobo.com>
This commit is contained in:
Bryan Frimin
2025-12-02 10:35:10 +01:00
parent 3be8ea7c03
commit c6276ebe73
14 changed files with 769 additions and 136 deletions

View File

@@ -0,0 +1,29 @@
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 };