Usage
Signature:
interface CompoundFilterDef<D>
Generic Parameters
Parameter Description D Type of Data
Typescript Import Format
//To use this interface, import as below.
import {CompoundFilterDef} from "ojs/ojdataprovider";
For additional information visit:
Fields
-
(static) CompoundOperator :string
-
CompoundOperator enum
The operators are based on the filtering spec of the RFC 7644 SCIM protocol:
SCIM Filtering
- Since:
- 5.0.0
Properties:
Name Type Default Description $and
string $and The filter is only a match if both expressions evaluate to true. $or
string $or The filter is a match if either expression evaluates to true. -
criteria :Array.<(AttributeFilterDef.<D>|AttributeExprFilterDef.<D>|CompoundFilterDef.<D>)>
-
Array of FilterDefs on which to apply the operator
- Since:
- 7.0.0
-
op :CompoundFilterDef.CompoundOperator
-
Operator to apply for the filter. Valid operators defined in the CompoundFilterOperator union type are the strings:
- $and The filters in the criteria array will be AND'd.
- $or The filters in the criteria array will be OR'd.
- Since:
- 7.0.0