Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Note: You can use either and or or in a single filter but not both at the same time.

...

Supported Operators

Operator

Description

Example

eq

Field

Checks if a field is equal to the specified value

complianceState

platform eq '

Compliant

iOS'

ne

Field

Checks if a field is not equal to the specified value

jailBroken

publisher ne '

Yes

Microsoft'

gt

Field

Checks if a field is greater than the specified value

lastSyncDateTime gt '2024-01-01T00:00:00Z'

deviceCount gt 10

lt

Field

Checks if a field is less than the specified value

freeStorageSpaceInBytes

sizeInByte lt 500000

ge

Field

Checks if a field is greater than or equal to the specified value

totalStorageSpaceInBytes

deviceCount ge

64000000

20

le

Field

Checks if a field is less than or equal to the specified value

managementCertificateExpirationDate le '2023-12-31T23:59:59Z'

sizeInByte le 1000000

contains

The

Checks if a field contains the specified value (for strings)

userDisplayName

displayName contains '

Smith

App'

startsWith

The

Checks if a field starts with the specified value (for strings)

deviceName

publisher startsWith '

Android

Apple'

endsWith

The

Checks if a field ends with the specified value (for strings)

emailAddress

application_url endsWith '

@example

.com'

isEmpty

The

Checks if a field is empty (null, undefined, or an empty string)

emailAddress

displayName isEmpty

isNotEmpty

The 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

displayName isNotEmpty

...

Examples

Find Applications Published by "Apple":

...