continue
Skips the rest of the current iteration and starts the next iteration, when the value is true.
Value
| Value | Type | Default | Description |
|---|---|---|---|
| the command's value | dynamic string | Starts the next iteration of the innermost loop when the value is true. Only allowed inside 'for' and 'while'. |
Example
"for": {
"iter": "{ rows }",
"loopVar": "row",
"do": {
"continue": "{ row['status'] != 'open' }",
"var": { "open": "{ open + [row] }" }
}
}Rules
- The value is evaluated as a boolean.
continueis allowed only inside afororwhileblock. Anywhere else the agent fails validation.- In a
whileloop the condition is evaluated again before the next iteration, as usual.

