Decision
This node evaluates a logical expression on the data and directs the flow based on the result.
Function
Section titled “Function”If the condition is true, it follows the “true” path. Otherwise, it follows the “false” path.
Configuration
Section titled “Configuration”| Field | Type | Description |
|---|---|---|
| condition | Text | JavaScript expression evaluated on data |
Common Usage
Section titled “Common Usage”- Check if a piece of data is present (
data.email) - Comparisons (
data.amount > 100) - Field validations
Multi-language
Section titled “Multi-language”help.es: Evalua una expresion si es verdadera o falsahelp.en: Evaluates an expression to see if it is true or false.