Interface ExecuteWorkflowNodeParameters

Source
interface ExecuteWorkflowNodeParameters {
    mode?: "once" | "each";
    options?: { waitForSubWorkflow?: boolean };
    source?: "url" | "database" | "localFile" | "parameter";
    workflowId?: string;
    workflowJson?: string;
    workflowPath?: string;
    workflowUrl?: string;
}

Properties§

Source§

readonly mode?: "once" | "each"

Default: "once"

Source§

readonly options?: { waitForSubWorkflow?: boolean }

Default: {}

Source§

readonly source?: "url" | "database" | "localFile" | "parameter"

Where to get the workflow to execute from Default: "database"

Source§

readonly workflowId?: 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.

Source§

readonly workflowJson?: string

The workflow JSON code to execute Default: "\n\n\n" Type options: {"rows":10}

Source§

readonly workflowPath?: string

The path to local JSON workflow file to execute

Source§

readonly workflowUrl?: string

The URL from which to load the workflow from