Division
Splits the flow into multiple parallel branches. Each branch receives the same input data and executes independently.
Parameters
| Parameter | Type | Required | Variable | Description |
|---|---|---|---|---|
mode | choice (static, dynamic) | Yes | No | Split mode: static (fixed number of branches) or dynamic (expression-based). (Default: "static") |
branches | number | No | No | Number of parallel branches to create (static mode only). (Default: 2, min 2, max 10) |
splitExpression | text | No | No | JMESPath expression that returns an array. Each element creates a branch (dynamic mode only). |
outputVariables | array | No | No | Output variable names for each branch. Defaults to branch_1_output, branch_2_output, etc. |
Tip
Combine with a Merge block to collect results from all branches. By default, 2 branches are created.