Skip to main content
Filters numeric fields for values greater than a specified number. Returns rows where the field value is > the specified value.

Syntax

<numeric_field>:
  greater_than: <number>

Properties

numeric_field
string
required
The numeric field to filter on, specified in the format view_name.field_name.
greater_than
number
required
The minimum value (exclusive). Returns rows where the field value is > this number. Decimals are supported.

Examples

Total price is 100.01 or more
orders.total_price:
  greater_than: 100.00
Age is 20 or less
users.age:
  not_greater_than: 21