While Loop with Break
Run a loop until a condition is met or a max iteration count is reached. Demonstrates WhileLoop with BreakLoop and continue/stop exec pins.
Graph Preview
Execution Flow
Initialize counter variable
WhileLoop fires loop_body exec pin each iteration
Check break condition inside loop body
BreakLoop exits the loop when condition met
Node Breakdown
Tags
Source
workflows/loop_break_example.json
General workflow demonstrating core patterns
Related Examples
Browse all →ForEach Iteration Pattern
beginnerCanonical ForEach usage: pass a list into ForEach, process each item through a sub-chain, collect results with Collect node, and output the aggregated list.
If/Else Branching
beginnerRoute execution through one of two branches based on a boolean condition. The canonical conditional pattern in Vibrante-Node exec-flow graphs.
Conditional with Variables
intermediateUse SetVariable and GetVariable to share state between branches in an If/Else workflow — a realistic pattern for pipeline decision logic that needs cross-branch data.