Filter Node Usage
How do I apply conditions with the Filter Node?
The Filter Node allows you to apply conditions to include or exclude rows:
Example Conditions:
age > 25 AND status = 'active' revenue >= 1000 OR customer_type = 'premium' date_created > '2023-01-01'
Supported Operators:
- Comparison:
>,<,>=,<=,=,!= - Logical:
AND,OR,NOT - Pattern matching:
LIKE,IN