Please enable JavaScript.
Coggle requires JavaScript to display documents.
N8N - Coggle Diagram
N8N
GETTING STARTED
INTERFACE NAVIGATION
Save vs Publish
Save — stores your changes and creates a new workflow version.You can save as many times as you want while editing and testing. Auto save is also enabled so if you forget to save, we have you covered.
Publish — makes a specific version live in production.Only the published version runs automatically.
-
-
CORE CONCEPTS
WORKFLOW: A workflow is a collection of nodes connected together to automate a process.
It begins executing when a trigger condition occurs and then runs each node step by step.
You build workflows visually on the workflow canvas. Drag, drop, and connect the nodes.
-
-
Workflow types in n8n
Manual Execution: Runs when you click Execute Workflow. Used for testing or workflows without a trigger.
Automatic Execution: Runs automatically when a Trigger, Webhook or polling detects an event.
-
NODE:
-
-
Nodes are connected in a sequence: [Node] → [Node] → [Node]
All nodes together make the workflow run smoothly, like building blocks of automation.
TYPES
TRIGGER NODES:
-
Examples: New Telegram message, new email, new row in Google Sheets.
-
ACTION/APP NODES:
act on data:add, update, delete, send.
Examples:Slack, DB, Twitter
-
CORE NODES:
handle workflow logic. They can check conditions, schedule actions, or transform data.
Examples:IF node, Set node, HTTP Request node.
-
CLUSTER NODES: are groups of nodes working together, mainly in AI workflows.
[Root Node] → [Language Model] → [Parser] → [Output]
-