True or False paths.
Behavior
- Evaluates a list of conditions using the selected logic operator (
AND/OR) - Routes to
Trueif the combined result is truthy,Falseotherwise - Supports 13 comparison operators including regex matching
Configuration
Condition rule
Each condition in theconditions array has:
Operators
Output handles
Use cases
VIP routing
VIP routing
Check if
{{customer_tier}} equals "vip". Route VIPs to a priority transfer queue and standard customers to the general queue.Input validation
Input validation
After Collect Digits, check if
{{digits}} matches a regex pattern (regex_match with ^\d{10}$) to validate a 10-digit phone number.Multi-condition logic
Multi-condition logic
Combine conditions with
AND: check that {{department}} equals "sales" AND {{business_hours}} is "open". Only transfer if both are true.