The subflow node.

interface SubFlowNode {
    asyncExecute?: boolean;
    connector?: string;
    connectorPoint?: string;
    description?: string;
    faultConnector?: string;
    faultConnectorPoint?: string;
    flow: string;
    inputAssignments?: InputAssignment[];
    label: string;
    locationX?: number;
    locationY?: number;
    name: string;
    newTransaction?: boolean;
    outputAssignments?: OutputAssignment[];
    type?: "Inner Flow";
}

Hierarchy (view full)

Properties

asyncExecute?: boolean

Async execute the sub flow.

connector?: string

The next element to run.

connectorPoint?: string
description?: string

The description of the element.

faultConnector?: string

The element to run when subflow fails.

faultConnectorPoint?: string
flow: string

The name of the flow to call.

inputAssignments?: InputAssignment[]

Input assignments.

label: string

The display name.

locationX?: number

The location.

locationY?: number

The location.

name: string

The unique name.

newTransaction?: boolean

Run the sub flow with new transaction.

outputAssignments?: OutputAssignment[]

Output assignments.

type?: "Inner Flow"

Indicate if the subflow is from inner flow or not.