Module: Google::Firestore::V1beta1::StructuredQuery::FieldFilter::Operator

Defined in:
lib/google/cloud/firestore/v1beta1/doc/google/firestore/v1beta1/query.rb

Overview

A field filter operator.

Constant Summary collapse

OPERATOR_UNSPECIFIED =

Unspecified. This value must not be used.

0
LESS_THAN =

Less than. Requires that the field come first in order_by.

1
LESS_THAN_OR_EQUAL =

Less than or equal. Requires that the field come first in order_by.

2
GREATER_THAN =

Greater than. Requires that the field come first in order_by.

3
GREATER_THAN_OR_EQUAL =

Greater than or equal. Requires that the field come first in order_by.

4
EQUAL =

Equal.

5
ARRAY_CONTAINS =

Contains. Requires that the field is an array.

7
IN =

In. Requires that value is a non-empty ArrayValue with at most 10 values.

8
ARRAY_CONTAINS_ANY =

Contains any. Requires that the field is an array and value is a non-empty ArrayValue with at most 10 values.

9