Filters records based on multiple conditions combined with OR or AND logic. Similar to Simple Filter, but designed for workflows where you need explicit control over how conditions are combined.Documentation Index
Fetch the complete documentation index at: https://docs.bondata.ai/llms.txt
Use this file to discover all available pages before exploring further.
Configuration
| Setting | Description |
|---|---|
| Conditions | One or more filter conditions |
| Logical | OR (any condition matches - default) or AND (all must match) |
| Setting | Description |
|---|---|
| Field | The field to evaluate |
| Operator | Comparison operator (equals, not equals, greater than, less than, contains, is null, etc.) |
| Value | The static value to compare against |
How It Works
Output
Records matching the condition logic pass through. Non-matching records are excluded.Example
Find contacts who are either in Sales or Marketing:- Condition 1: Department equals “Sales”
- Condition 2: Department equals “Marketing”
- Logic: OR
Best Practices
- Use OR logic when you need to match any of several values for the same field
- For field-to-field comparisons, use the Field Comparison Condition instead
- Chain with other filter nodes for complex multi-step filtering
Related Nodes
- Simple Filter - equivalent filtering with the same condition operators
- Basic Condition - branches into TRUE/FALSE paths instead of excluding records