WorkflowbeginnerWorkflows

Sequential Execution Chain

Wire multiple exec-flow nodes in strict sequence using exec pins to guarantee ordered execution — the foundation of any linear pipeline step.

5 nodesExec-Flow · Sequential · 5 connections

Graph Preview

run-in-sequence.vnwView source

Execution Flow

1

Step 1 runs and emits exec_out

2

Step 2 receives exec_in and runs next

3

Step 3 follows in strict order

4

Step 4 completes the chain

Node Breakdown

Step 1Control
Step 2Control
Step 3Control
Step 4Output

Tags

#sequence#exec-flow#ordering#pipeline#beginner

Source

workflows/run_in_sequence.json

General workflow demonstrating core patterns

Related Examples

Browse all →
Workflow

ForEach Iteration Pattern

beginner

Canonical 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

beginner

Route 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

intermediate

Run 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