op property
The operator to filter by. Possible string values are:
- "OPERATOR_UNSPECIFIED" : Unspecified. This value must not be used.
- "LESS_THAN" : The given
property
is less than the givenvalue
. Requires: * Thatproperty
comes first inorder_by
. - "LESS_THAN_OR_EQUAL" : The given
property
is less than or equal to the givenvalue
. Requires: * Thatproperty
comes first inorder_by
. - "GREATER_THAN" : The given
property
is greater than the givenvalue
. Requires: * Thatproperty
comes first inorder_by
. - "GREATER_THAN_OR_EQUAL" : The given
property
is greater than or equal to the givenvalue
. Requires: * Thatproperty
comes first inorder_by
. - "EQUAL" : The given
property
is equal to the givenvalue
. - "IN" : The given
property
is equal to at least one value in the given array. Requires: * Thatvalue
is a non-emptyArrayValue
, subject to disjunction limits. * NoNOT_IN
is in the same query. - "NOT_EQUAL" : The given
property
is not equal to the givenvalue
. Requires: * No otherNOT_EQUAL
orNOT_IN
is in the same query. * Thatproperty
comes first in theorder_by
. - "HAS_ANCESTOR" : Limit the result set to the given entity and its
descendants. Requires: * That
value
is an entity key. * All evaluated disjunctions must have the sameHAS_ANCESTOR
filter. - "NOT_IN" : The value of the
property
is not in the given array. Requires: * Thatvalue
is a non-emptyArrayValue
with at most 10 values. * No otherOR
,IN
,NOT_IN
,NOT_EQUAL
is in the same query.
- That
field
comes first in theorder_by
.
Implementation
core.String? op;