Appearance
Result
The Result node is a simple pass-through terminal node for data source pipelines. It marks the end of the pipeline and its input becomes the pipeline's output.
Configuration
This node has no configuration options.
Input
Accepts any data type.
Output
Returns the input data unchanged.
When to Use
Use the Result node as the final node in data source pipelines -- pipelines that feed data to widgets like Repeaters, Listings, and data-bound displays.
Table Query --> Filter --> Sort --> Limit --> ResultThe data that reaches the Result node is what the widget receives.
Result vs. Output
Both Result and Output are pass-through terminal nodes. They are functionally identical. The distinction is semantic:
- Result -- Use for data source pipelines (loading data for display).
- Output -- Use for action pipelines (form submissions, button actions).
TIP
Every pipeline needs a terminal node. If your pipeline has no Result or Output node, the executor returns the last executed node's result, but it is better practice to explicitly mark the terminal with a Result or Output node.