diff --git a/google/cloud/firestore_v1/query.py b/google/cloud/firestore_v1/query.py index d4e1f7f07..6a6326c90 100644 --- a/google/cloud/firestore_v1/query.py +++ b/google/cloud/firestore_v1/query.py @@ -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.