Decision
Node: Decision
Section titled “Node: Decision”This node evaluates a logical expression on the incoming data and routes the flow based on the result.
Function
Section titled “Function”If the condition evaluates to true, the flow follows the “true” path; otherwise, it follows the “false” path.
Configuration
Section titled “Configuration”| Field | Type | Description |
|---|---|---|
| condition | Text | JavaScript expression evaluated against data |
Common Usage
Section titled “Common Usage”- Check if a value is present (
data.email) - Compare numeric values (
data.amount > 100) - Validate required fields