Skip to main content

core.loop.start

Open a do-while control-flow region.

Inputs

This action does not take input fields.

Examples

Repeat until a condition is met

core.loop.end

Close a do-while control-flow region and evaluate whether execution should loop back to the matching core.loop.start.

Inputs

condition
string
required
Expression evaluated after the loop body; truthy values continue looping.
max_iterations
integer
Maximum number of loop iterations before failing.Default: 100.

Examples

Repeat until a condition is met