Creates and returns a new Query that ends at the provided
set of field values relative to the order of the query. The order of the
provided values must match the order of the order by clauses of the query.
Creates and returns a new Query that ends at the provided
set of field values relative to the order of the query. The order of the
provided values must match the order of the order by clauses of the query.
Creates and returns a new Query that ends before the set of
field values relative to the order of the query. The order of the provided
values must match the order of the order by clauses of the query.
Creates and returns a new Query that ends before the set of
field values relative to the order of the query. The order of the provided
values must match the order of the order by clauses of the query.
Creates and returns a new Query instance that applies a
field mask to the result and returns only the specified subset of fields.
You can specify a list of field paths to return, or use an empty list to
only return the references of matching documents.
Creates and returns a new Query that starts after the
provided set of field values relative to the order of the query. The order
of the provided values must match the order of the order by clauses of the
query.
Creates and returns a new Query that starts after the
provided set of field values relative to the order of the query. The order
of the provided values must match the order of the order by clauses of the
query.
Creates and returns a new Query that starts at the provided
set of field values relative to the order of the query. The order of the
provided values must match the order of the order by clauses of the query.
Creates and returns a new Query that starts at the provided
set of field values relative to the order of the query. The order of the
provided values must match the order of the order by clauses of the query.
Creates and returns a new Query with the additional filter
that documents must contain the specified field and that its value should
satisfy the relation constraint provided.
Creates and returns a new Query with the additional filter
that documents must contain the specified field and that its value should
satisfy the relation constraint provided.
Applies a custom data converter to this Query, allowing you to use your
own custom model objects with Firestore. When you call get on the
returned Query, the provided converter will convert between Firestore
data and your custom type U.