import { IExecuteFunctions } from 'n8n-core'; import { INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow'; export class Start implements INodeType { description: INodeTypeDescription = { displayName: 'Start', name: 'start', icon: 'fa:play', group: ['input'], version: 1, description: 'Starts the workflow execution from this node', maxNodes: 1, hidden: true, defaults: { name: 'Start', color: '#00e000', }, // eslint-disable-next-line n8n-nodes-base/node-class-description-inputs-wrong-regular-node inputs: [], outputs: ['main'], properties: [ { displayName: 'This node is where a manual workflow execution starts. To make one, go back to the canvas and click ‘execute workflow’', name: 'notice', type: 'notice', default: '', }, ], }; execute(this: IExecuteFunctions): Promise { const items = this.getInputData(); return this.prepareOutputData(items); } }