Entity Browser property expression operators

Use operators in Entity Browser property expressions to define conditions on properties. Available operators depend on the property type that you initially select for an expression.

String Property Operators

Exists
An entity must have the property.
Does not exist
An entity must not have the property.
Equals
The property value must match the specified string.
Does not equal
The property value must not match the specified string.
Is in
The property value must be in the specified string.
Is not in
The property value must not be in the specified string.
Contains
The property value must contain the specified string.
Does not contain
The property value must not contain the specified string.
Starts with
The property value must start with the specified string.
Does not start with
The property value must not start with the specified string.
Ends with
The property value must end with the specified string.
Does not end with
The property value must not end with the specified string.
Matches regular expression
The property value must match a regular expression (regex). The regular expression must match the entire string in the property value.

Numeric or Temporal Property Operators

Exists
An entity must have the property.
Does not exist
An entity must not have the property.
Equals
The property value must be equal to a particular value.
Does not equal
The property value must not be equal to a particular value.
Is between
The property value must be between two values.
Is not between
The property value must be less than the smaller or greater than the larger of two values.
Is greater than
The property value must be greater than a specified value.
Is greater than or equals
The property value must be greater than or equal to a specified value.
Is less than
The property value must be less than a specified value.
Is less than or equals
The property value must be less than or equal to a specified value.

Logical Property Operators

True
Displays entities or relationships when the property value evaluates as true.
False
Displays entities or relationships when the property value evaluates as false.