Course/Chapter 3/1. Workflow Anatomy
    beginner
    Chapter 3: Understanding Workflows

    1. Workflow Anatomy

    Dissect a workflow into its core components.

    15m Lesson 1 of 6

    Every n8n workflow follows the same fundamental structure: a trigger starts the execution, action nodes process data, and connections define the data flow path.

    Components

    1. Trigger Node: The entry point — determines when/how the workflow runs
    2. Action Nodes: Perform operations (API calls, data transforms, etc.)
    3. Connections: Wires that define which node runs next and pass data
    4. Execution: A single run of the workflow from trigger to end

    Execution Model

    n8n processes nodes sequentially along connected paths. When a node has multiple outputs (like an IF node), execution splits into parallel branches.

    Pro Tips

    • 💡Every workflow must start with exactly one trigger node
    • 💡A workflow can have multiple end points — execution completes when all branches finish

    Comprehension Quiz

    Answer 2 of 2 correctly to unlock lesson completion.

    1. How many trigger nodes can a workflow have?

    2. When a node has multiple outputs, what happens?

    Pass the quiz above to unlock lesson completion