Create a new filter by specifying the field, operator and type
=, !=, >, >=, <, <=), the in operator for matching against arrays or data sources, the exists operator for field presence checks, and compound AND/OR logic for complex conditions.
| Operator | Description | Example Value |
|---|---|---|
= | Equals | "ethereum" |
!= | Not equals | "pending" |
> | Greater than | 1000000 |
>= | Greater than or equal | 18000000 |
< | Less than | 50000 |
<= | Less than or equal | 100 |
in | Value in array or data source | ["ethereum", "polygon"] |
exists | Field exists or doesn’t exist | true or false |