Configuration
Each condition specifies:
How It Works
1
Define conditions
Add one or more conditions that compare field values against static values.
2
Choose logic
Select OR to branch on any matching condition, or AND to require all conditions.
3
Connect downstream nodes
Connect nodes to the True output for matching records, and to the False output for non-matching records.
Output
Both outputs can connect to any downstream node, creating independent processing paths.
Example
Route high-value accounts to a different enrichment path:- Condition: Revenue greater than 100000
- True path → AI Enrichment → Update Record
- False path → Export to CSV for review
Best Practices
- Use clear, specific conditions to avoid ambiguous routing
- Always connect both True and False outputs - unconnected branches mean lost records
- For field-to-field comparisons, use Field Comparison Condition instead
- For routing to more than two paths, use Router Condition
Related Nodes
- Field Comparison Condition - branches by comparing two fields instead of field vs. static value
- Router Condition - routes records to multiple named paths, not just True/False
- Simple Filter - removes non-matching records instead of branching