...
Note: You can use either and
or or
in a single filter but not both at the same time.
...
Supported Operators
Operator | Description | Example |
---|---|---|
|
Checks if a field is equal to the specified value |
|
|
|
Checks if a field is not equal to the specified value |
|
|
|
Checks if a field is greater than the specified value |
lastSyncDateTime gt '2024-01-01T00:00:00Z'
|
|
Checks if a field is less than the specified value |
|
|
Checks if a field is greater than or equal to the specified value |
|
|
|
Checks if a field is less than or equal to the specified value |
managementCertificateExpirationDate le '2023-12-31T23:59:59Z'
|
|
Checks if a field contains the specified value (for strings) |
|
|
|
Checks if a field starts with the specified value (for strings) |
|
|
|
Checks if a field ends with the specified value (for strings) |
|
|
|
Checks if a field is empty (null, undefined, or an empty string) |
|
|
platform eq 'iOS' or publisher ne 'Microsoft'
Checks if a field is not empty |
emailAddress isNotEmpty
and
Combines multiple conditions where all must be true
complianceState eq 'Compliant' and deviceCount gt 10
or
Combines multiple conditions where at least one must be true
|
...
Examples
Find Applications Published by "Apple":
...