Skip to main content

Enums

Version: 1.0.0

FieldFilterOperator

Description
The operator to use for filtering fields.
IDValuesDescriptions
0EqualsCompares the specified field to the specified value.
1NotEqualsCompares the specified field to the specified value and returns true if the values are not equal.
2LessThanCompares the specified field to the specified value and returns true if the field value is less than the specified value.
3LessEqualThanCompares the specified field to the specified value and returns true if the field value is less than or equal to the specified value.
4GreaterThanCompares the specified field to the specified value and returns true if the field value is greater than the specified value.
5GreaterEqualThanCompares the specified field to the specified value and returns true if the field value is greater than or equal to the specified value.
6InCompares a field to be equal any value in the specified array.
7NotInCompares a field to be not equal any value in the specified array.
8LikeCompares a field to the specified value using a pattern matching comparison. Use * as a wildcard character.
9MatchRegExMatches a field containing a value that matches the specified regular expression.
10AnyEqCompares an array field with at least one element that matches the specified value.
11MatchMatches an array field with at least one element that matches all the specified query criteria.

SortOrders

Description
The sort order of a field.
IDValuesDescriptions
0DefaultDefault sorting based on data source type
1AscendingAscending order
2DescendingDescending order