interface ExecuteWorkflowNodeParameters {
mode?: "once" | "each";
options?: { waitForSubWorkflow?: boolean };
source?: "url" | "database" | "localFile" | "parameter";
workflowId?: string;
workflowJson?: string;
workflowPath?: string;
workflowUrl?: string;
}
Properties§
§
§
§
§
§
§
§
readonly mode?: "once" | "each"
readonly options?: { ... }
Default: {}
readonly source?: "url" | "database" | "localFile" | "parameter"
Where to get the workflow to execute from Default: "database"
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.
readonly workflow Json?: string
The workflow JSON code to execute Default: "\n\n\n" Type options: {"rows":10}
readonly workflow Path?: string
The path to local JSON workflow file to execute
readonly workflow Url?: string
The URL from which to load the workflow from
Default: "once"