No Operation
Pass-through node that forwards all input data unchanged, useful as a junction point or placeholder.
The No Operation (No-Op) node passes all incoming data through to the next node without any transformation. It has no configuration fields.
Configuration
This node has no configurable fields. All incoming data is forwarded as-is.
Output
| Field | Type | Description |
|---|---|---|
| (passthrough) | object | The entire input data object from the preceding node, forwarded unchanged. |
Use Cases
- Branch merging -- Place a No-Op after multiple conditional branches (e.g., after an If/Else) to unify them into a single downstream path.
- Placeholder -- Reserve a spot in the workflow where a real node will be added later, without breaking the graph.
- Debugging -- Insert a No-Op between two nodes to inspect the data at that point in the workflow execution log.
- Readability -- Use it as a labeled junction to make complex workflow graphs easier to follow.
Example
An If/Else node routes orders to either a domestic or international shipping path. Both paths converge on a No-Op node labeled "Shipping Complete," which then connects to a single confirmation email node.
[If/Else] --true--> [Domestic Shipping] ---> [No-Op: Shipping Complete] ---> [Send Email]
--false--> [Intl Shipping] --->