Skip to main content
Filters for exact equality. This operator applies to all filter types (time, numeric, and string fields) and matches rows where the field value exactly equals the specified value.
Use not to create a negative filter.

Syntax

<field_name>:
  is: <value>

Properties

field_name
string
required
The field to filter on, specified in the format view_name.field_name. Can be a time, numeric, or string field.
is
string | number | date
required
The exact value to match. Type should correspond to the field type (string, number, or date).

Examples

Match active users
users.status:
  is: active
Match products with a price of 77.00
products.price:
  is: 77.00
Match users created on January 1, 2024
users.created_at:
  is: 2024-01-01