WorkflowintermediateWorkflows
Concat String with Loop
Iteratively concatenate strings in a loop, building up a result string across multiple iterations. Demonstrates while loop + variable accumulation pattern.
8 nodesExec-Flow · Loop · 11 connections
Graph Preview
Node Breakdown
Init StringData
WhileLoopLogic
ConcatString
Set VarData
Final ResultOutput
Tags
#string#concat#loop#accumulation#variable
Source
workflows/concat_string_with_loop.json
General workflow demonstrating core patterns
Related Examples
Browse all →Workflow
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.
7 nodesAsync DAG
#foreach#iteration#list
Workflow
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.
4 nodesExec-Flow
#conditional#if-else#branching
Workflow
While Loop with Break
intermediateRun a loop until a condition is met or a max iteration count is reached. Demonstrates WhileLoop with BreakLoop and continue/stop exec pins.
4 nodesExec-Flow
#while#loop#break