NodesData
Filter
Lets matching executions continue and silently stops non-matching ones.
Data
Use this when you want a guard clause instead of a true/false branch.
When to use it
- Drop events that do not match required conditions.
- Keep a flow simple when you only care about the pass case.
Routing behavior
Continues only when the configured conditions pass. Non-matching executions stop on this node.
Properties
| Property | Type | Required | Details |
|---|---|---|---|
conditions conditions | conditions | Optional | Conditions to filter data. Only matching data passes through. |
combinator combinator | select | Optional | How to combine multiple conditions |
ignoreCase ignoreCase | boolean | Optional | Ignore case when comparing string values |
convertTypes convertTypes | boolean | Optional | If the type of an expression doesn't match the type of the comparison, try to cast the expression to the required type. |
Common mistakes
- Non-matching executions stop quietly.
- Use If instead when you need a false path.