Outputs & Actions
Workflow Output Node Reference
Reference for the Workflow Output node used by reusable sub-workflows.
Updated 1 min read
Overview
The Workflow Output node marks the return point of a sub-workflow. When a parent workflow calls a child workflow, this node decides what value is returned.
Configuration / Settings
| Setting | Type | Required | Details |
|---|---|---|---|
| Label | string | No | Human-readable name for the output point. |
Inputs Expected
- Any payload type is accepted.
- The node is most useful when your workflow is reused as a sub-workflow.
Variables Exported / Outputs
Output shape: same as input
Metadata:
isWorkflowOutput: truelabel
Common Use Cases
- Return a final file array from a child workflow.
- Return structured stats from a reusable reporting workflow.
- Make child-workflow behavior deterministic instead of relying on "last node wins".
Edge Cases
- If a child workflow has no Workflow Output node, the platform returns the last meaningful result from that child workflow.
- The node is a pure passthrough in standalone workflows, so it does not alter the payload.