Data Flow
Overview
Learn how to access input data in steps and use the output of steps in subsequent steps.
Fundamental Rules
- Data flows from left to right
- Multiple steps can be connected to the Input, creating parallel execution paths:
- Each path/chain starts with a step connected to the Input
- Paths execute independently and in parallel
- Paths without an Input connection will not execute
- Each step can only access:
- Input fields
- Outputs from previous steps (to its left) in its own path
- Steps cannot access:
- Future steps (to their right)
- Steps in parallel paths
- Steps outside their scope
Was this page helpful?