Parallel
Spawns multiple downstream branches that can run concurrently.
Parallel
Use this for advanced fan-out flows where multiple paths should start from the same point.
When to use it
- Send multiple destinations in parallel.
- Split one execution into several independent paths before joining later.
Routing behavior
Starts multiple downstream branches from the same point in the flow.
Properties
| Property | Type | Required | Details |
|---|---|---|---|
branches branches | number | Optional | Number of parallel branches to spawn |
Common mistakes
- This is an advanced node.
- It is most useful when paired with Wait Parallel.