Condition
FreeBranch by comparing two values.
Compares two values and branches true / false.
Fields
| Field | Type | Required | Templatable | Notes |
|---|---|---|---|---|
| Value | text | — | yes | Left side, e.g. {{var.age}} |
| Operator | select | yes | — | ==, !=, contains, >, >=, <, <= |
| Compare with | text | — | yes | Right side |
Outcomes
true— the comparison holds.false— it doesn’t.
How it works
Use templates on both sides. Numeric
operators compare numbers; contains checks substrings.
Condition {{var.age}} >= 18
├─ true → "Welcome"
└─ false → "Sorry, 18+ only"