Visual Query Builder property expression operators
Use operators in Visual Query Builder property expressions to define conditions on properties. Available operators depend on the property type that you initially select for an expression.
String property operators
These operators evaluate string or text properties.
- Equals
- The property value must match the specified string.
- Does not equal
- The property value must not match the specified string.
- Exists
- An entity must have the property.
- Does not exist
- An entity must not have the property.
- 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.
- Contains
- The property value must contain the specified string.
- Does not contain
- The property value must not contain 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
These operators evaluate numeric, date, or time properties.
- 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.
- Exists
- An entity must have the property.
- Does not exist
- An entity must not have the property.
- 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.
Boolean property operators
These operators evaluate properties that can be set to either "true" or "false".
- Equals
- Displays entities or relationships when the property value evaluates as either True or False.
- Does not equal
- Displays entities or relationships when the property value does not evaluate as either True or False.
- Exists
- Displays entities or relationships when the property value exists.
- Does not exist
- Displays entities or relationships when the property value does not exist.