...
Note: You can use either and
or or
in a single filter but not both at the same time.
...
Supported Operators
Operator | Description | Example |
---|---|---|
| Field is equal to the specified value |
|
| Field is not equal to the specified value |
|
| Field is greater than the specified value |
|
| Field is less than the specified value |
|
| Field is greater than or equal to the specified value |
|
| Field is less than or equal to the specified value |
|
| The field contains the specified value (for strings) |
|
| The field starts with the specified value (for strings) |
|
| The field ends with the specified value (for strings) |
|
Logical Operators
...
| The field is empty (null, undefined, or empty string) |
|
| The field is not empty |
|
| Combines multiple conditions where all |
...
must be true |
...
| |
|
...
Combines multiple conditions where at least one |
...
must be true |
...
Operator
Description
Example
eq
Field is equal to the value
Note: You can use either and or or in a single filter but not both at the same time.
Supported Operators
|
ne
Field is not equal to the value
|
gt
Field is greater than the value
deviceCount gt 10
lt
Field is less than the value
sizeInByte lt 500000
ge
Field is greater than or equal to the value
deviceCount ge 20
le
Field is less than or equal to the value
sizeInByte le 1000000
contains
The field contains the value (for strings)
displayName contains 'App'
startsWith
The field starts with the value (for strings)
publisher startsWith 'Apple'
endsWith
The field ends with the value (for strings)
|
...
Examples
Find Applications Published by "Apple":
...