NodesParallel
Wait Parallel
Waits for the branches created by a Parallel node and then continues.
Parallel
Use this when a flow should fan out and then join again after all or any branch completes.
When to use it
- Join several parallel branches before one final step.
- Continue after the first branch returns a useful result.
Routing behavior
Waits for a related Parallel node to finish all branches or the first branch, depending on configuration.
Properties
| Property | Type | Required | Details |
|---|---|---|---|
mode mode | select | Optional | Wait for all branches or just the first one |
parallelNodeId parallelNodeId | string | Optional | ID of the parallel node to wait for |
Common mistakes
- It must point at the correct Parallel node.
- This is advanced runtime behavior.