The interface for oj.AttributeFilterDef
Fields
-
op :oj.AttributeFilterOperator.AttributeOperator
-
Operator to apply for the filter. Valid operators defined in the AttributeFilterOperator union type are the strings:
- $co The entire operator value must be a substring of the attribute value for a match.
- $eq The attribute and operator values must be identical for a match.
- $ew The entire operator value must be a substring of the attribute value matching at the end of the attribute value. This criterion is satisfied if the two strings are identical.
- $pr If the attribute has a non-empty or non-null value, or if it contains a non-empty node for complex attributes, there is a match.
- $gt If the attribute value is greater than the operator value, there is a match.
- $ge If the attribute value is greater than or equal to the operator value, there is a match.
- $lt If the attribute value is less than the operator value, there is a match.
- $le If the attribute value is less than or equal to the operator value, there is a match.
- $ne The attribute and operator values are not identical.
- $regex If the attribute value satisfies the regular expression, there is a match.
- $sw The entire operator value must be a substring of the attribute value, starting at the beginning of the attribute value. This criterion is satisfied if the two strings are identical.
- Since:
- 7.0.0
-
value :any
-
Specifies the value to filter for. Value should be an object which specifies attribute/value pairs to filter on. The op will be applied to each attribute/value pair and the whole will be AND'd. For subobjects, please specify them in a nested structure.
- Since:
- 7.0.0
Examples
Filter definition which filters on DepartmentId value 10
{op: '$eq', value: {DepartmentId: 10}}Filter definition which filters on DepartmentId value 10 and DepartmentName is Hello
{op: '$eq', value: {DepartmentId: 10, DepartmentName: 'Hello'}}Filter definition which filters on subobject Location State is California and DepartmentName is Hello
{op: '$eq', value: {DepartmentName: 'Hello', Location: {State: 'California'}}}