Create a new filter by specifying the field, operator and type
This endpoint creates a new filter for use in stream transformations. Filters support comparison operators (Documentation Index
Fetch the complete documentation index at: https://docs.allium.so/llms.txt
Use this file to discover all available pages before exploring further.
=, !=, >, >=, <, <=), 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 |