Skip to content

Date filters

Filters by comparing a field to a range of date values.

PropertyTypeDescription
operatorRangeOperatorsThe operator to apply to the filter value
valuerange objectThe value to use for the filter operation
PropertyTypeDescription
minisoDate or utcDateTimeThe minimum date value for this range
maxisoDate or utcDateTimeThe maximum date value for this range

A JSON example of this field is:

{
"operator": "between",
"value": {
"min": "2021-01-01",
"max": "2021-01-02"
}
}

Filters by comparing a field to a date value.

PropertyTypeDescription
operatorComparisonOperatorsThe operator to apply to the filter value
valueisoDate or utcDateTimeThe value to use for the filter operation

A JSON example of this field is:

{
"operator": "eq",
"value": "2021-01-01"
}