docs/versioned_docs/version-3.0.0-LTS/workflows/nodes.md
Nodes are graphical representations of each process in a workflow. Each node can access the data from the nodes that were executed earlier. Every workflow contains key node types that help orchestrate the flow of data and logic.
The Start Trigger node is the entry point of your workflow. It can be triggered:
The data received by the Start Trigger through parameters is accessible throughout the workflow.
The JavaScript node lets you write custom server-side code to:
The code must include a return statement to pass results to subsequent nodes.
The If condition node enables branching logic with:
When the condition evaluates to true, the outgoing node connected to the green arrow will be executed. If it is false, the outgoing node connected to the red arrow will be executed.
The Loop node allows you to:
Data source nodes connect to your configured data sources, enabling you to:
Each data source node has specific configurations based on its type:
The Response node defines the final output of your workflow. You can configure multiple response nodes to return multiple execution results.
Each node type serves a specific purpose in the workflow. By combining these nodes, you can create powerful automation flows tailored to your business needs.