Query criterion.
Represents a projection, filtering, ordering, or pagination criterion in a Query. Query keys are encoded string representation of criteria.
A unified target suffices as projections and constraints are easily disambiguated after parsing using isIdentifier.
// Projection: "vendorName=vendor.name"{ target: "vendorName", pipe: [], path: ["vendor", "name"] }// Constraint: ">=year:releaseDate"{ target: ">=", pipe: ["year"], path: ["releaseDate"] } Copy
// Projection: "vendorName=vendor.name"{ target: "vendorName", pipe: [], path: ["vendor", "name"] }// Constraint: ">=year:releaseDate"{ target: ">=", pipe: ["year"], path: ["releaseDate"] }
Readonly
Property name for projections or constraint Operator.
Transform pipeline applied to the value, in application order.
Property path segments to the target value.
Query criterion.
Represents a projection, filtering, ordering, or pagination criterion in a Query. Query keys are encoded string representation of criteria.
A unified target suffices as projections and constraints are easily disambiguated after parsing using isIdentifier.
Example
See