Loop step

interface LoopStep {
    type: "loop";
    id: string;
    collection: StepInput;
    itemVariable: string;
    steps: WorkflowStep[];
    maxIterations?: number;
}

Properties

type: "loop"
id: string
collection: StepInput
itemVariable: string
steps: WorkflowStep[]
maxIterations?: number