Getting Started
Date Filters
Supported Filter Conditions
The following filter conditions are supported:
equals
: Checks if the date equals the specified value.not_equals
: Checks if the date does not equal the specified value.gt
: Checks if the date is greater than the specified value.lt
: Checks if the date is less than the specified value.gte
: Checks if the date is greater than or equal to the specified value.lte
: Checks if the date is less than or equal to the specified value.bwi
: Checks if the date is between two specified values (inclusive).bwe
: Checks if the date is between two specified values (exclusive).in
: Checks if the date is within a list of specified values.not_in
: Checks if the date is not within a list of specified values.
Usage
The date filter should be provided as a string in the following format:
Examples
Equals
Not Equals
Greater Than
Less Than
Greater Than or Equal To
Less Than or Equal To
Between Inclusive
Between Exclusive
In List
Not In List
Validation
- The dates must be in a valid ISO string format.
- For
bwi
andbwe
conditions, exactly two dates must be provided. - The first date must be less than the second date for
bwi
andbwe
conditions. - Duplicate dates in
in
andnot_in
conditions will be filtered out.