...
General features | |||||
---|---|---|---|---|---|
= == | Compare field with a value. You can use both "=" and "==". These and other operators can be used with most field types.
Use double quotes with strings. Inside a string literal, a double quote is written as two consecutive double quotes:
| ||||
>, < >=, <= | To compare numeric field values and dates.
| ||||
!= <> | Not equal operators. Both have the same function. | ||||
AND && | Boolean "and" to combine conditions.
| ||||
OR || |
| ||||
!= | Not equal.
| ||||
( ) | Brackets can be used to combine multiple conditions:
| ||||
! NOT | Negation:
| ||||
x ? y : z | Evaluates y if x is true, evaluates z if x is false.
| ||||
null | Literal to evaluate if a field is null or not:
| ||||
Numbers | |||||
+ - * / | Numeric operators.
| ||||
Decimals | Decimal fields use the optional '.' (dot) decimal point:
| ||||
Strings | |||||
.StartsWith .EndsWith .Contains | Various operators to search string fields by prefix, suffix or infix. Use NOT to negate.
| ||||
.Length | To query by string length:
| ||||
Dates | You can use the DateTime object to compare dates. | ||||
To compare a date:
Or with hours, minutes and seconds:
|
...
Basic | Exact numeric match:
Range match:
The operators can be any of: >, <, >=, <=, =, !=
| ||||
Any of | This construct matches if the field matches any one of the pipe separated values:
| ||||
Null values | Find null values with fields that are nullable:
|
Decimals filtering
Summary | You can use all the features also available with number filters. Please always use the "." (dot) character for the decimal point. The decimal point is optional. Examples:
|
Date filtering
Basic | Like with numeric fields, you can do different comparisons:
Important:
| ||||
Date formats | Formats that are supported are:
Note: Partial date/times are automatically expanded. Example: "2018" is converted to 2018-01-01 00:00 | ||||
Null values | Find null values with fields that are nullable:
| ||||
Filter day or month | All deadlines on a day (UTC):
All deadlines in a month (UTC):
|
...