From c3864f743f6fdfbfd2a266712c1764ba23749f8f Mon Sep 17 00:00:00 2001 From: BenWhitehead Date: Wed, 13 Nov 2019 18:09:48 -0500 Subject: [PATCH] docs(firestore): add new where operators to docstring (#9789) --- google/cloud/firestore_v1/query.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.