Configuration
| Setting | Description |
|---|---|
| Conditions | One or more conditions comparing a field to a static value |
| Logical | OR (any condition matches — default) or AND (all must match) |
| Setting | Description |
|---|---|
| Field | The field to evaluate |
| Operator | Comparison operator (equals, not equals, greater than, contains, is null, etc.) |
| Value | The static value to compare against |
How It Works
Output
| Output | Description |
|---|---|
| True | Records where the conditions evaluate to true |
| False | Records where the conditions evaluate to false |
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