Loop
Overview
The Loop node repeats the connected downstream path either a fixed number of times or until a specified condition evaluates to true. It enables polling patterns, retry logic, and iterative data processing.
Category
Flow Control — flowcontrol/loop
Settings
| Setting | Type | Default | Description |
|---|---|---|---|
| mode | String | count | count (fixed iterations) or condition (until condition met) |
| maxIterations | Number | 10 | Maximum number of iterations (safety limit) |
| conditionField | String | — | Field to check in condition mode |
| conditionOperator | String | eq | Comparison operator for the exit condition |
| conditionValue | Any | — | Value to compare against |
Inputs & Outputs
- input1 — Initial data
- output1 — Final result after all iterations complete