Flow Control Nodes
Flow control nodes route items through your workflow based on conditions and logic.
Overview
These nodes determine which path items take:
- If - Route to one of two outputs based on conditions
- Filter - Keep only items matching criteria
- Switch - Route to multiple conditional branches
- Error Catcher - Handle errors from other nodes
Conditional Logic
Flow control nodes use conditions to evaluate items. A condition compares values using operations like equals, greater than, contains, etc.
Condition Structure
Each condition has:
- Field 1 - The value to test (usually from the item)
- Operation - How to compare
- Field 2 - The value to compare against (for comparison operations)
Combine Operations
Multiple conditions can be combined:
- AND - All conditions must be true
- OR - At least one condition must be true