Skip to content

Commit

Permalink
docs(firestore): add new where operators to docstring (#9789)
Browse files Browse the repository at this point in the history
  • Loading branch information
BenWhitehead authored and tseaver committed Nov 13, 2019
1 parent b81ad2d commit c3864f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions google/cloud/firestore_v1/query.py
Expand Up @@ -233,8 +233,8 @@ def where(self, field_path, op_string, value):
field_path (str): A field path (``.``-delimited list of
field names) for the field to filter on.
op_string (str): A comparison operation in the form of a string.
Acceptable values are ``<``, ``<=``, ``==``, ``>=``
and ``>``.
Acceptable values are ``<``, ``<=``, ``==``, ``>=``, ``>``,
``in``, ``array_contains`` and ``array_contains_any``.
value (Any): The value to compare the field against in the filter.
If ``value`` is :data:`None` or a NaN, then ``==`` is the only
allowed operation.
Expand Down

0 comments on commit c3864f7

Please sign in to comment.