interface ExecuteWorkflowNodeParameters {
mode?: "once" | "each";
options?: { waitForSubWorkflow?: boolean };
source?: "url" | "database" | "localFile" | "parameter";
workflowId?: string;
workflowJson?: string;
workflowPath?: string;
workflowUrl?: string;
}
Properties§
Source§readonly source?: "url" | "database" | "localFile" | "parameter"
readonly source?: "url" | "database" | "localFile" | "parameter"
Where to get the workflow to execute from Default: "database"
Source§readonly workflow Id?: string
readonly workflow Id?: string
Note on using an expression here: if this node is set to run once with all items, they will all be sent to the same workflow. That workflow's ID will be calculated by evaluating the expression for the first input item.
Default: "once"