Usage
Signature:
interface CompoundFilterOperator<D>
Generic Parameters
Parameter Description D Type of Data
Typescript Import Format
//To use this interface, import as below.
import {CompoundFilterOperator} from "ojs/ojdataprovider";
For additional information visit:
The interface for CompoundFilterOperator
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.<FilterOperator.<D>>
-
Array of FilterOperators on which to apply the operator
- Since:
- 5.0.0
-
op :CompoundFilterOperator.CompoundOperator
-
Operator one of enum CompoundOperator {$and, $or}
- Since:
- 5.0.0