We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e39f8fb + 2475d72 commit ad3431bCopy full SHA for ad3431b
docs/firestore-collection.rst
@@ -3,3 +3,7 @@ Firestore Collections
3
.. autoclass:: google.cloud.firestore.CollectionRef
4
:members:
5
:show-inheritance:
6
+
7
+.. autoclass:: google.cloud.firestore.Query
8
+ :members:
9
+ :show-inheritance:
firestore/google/cloud/firestore/__init__.py
@@ -16,13 +16,15 @@
16
17
from google.cloud.firestore.client import Client
18
from google.cloud.firestore.collection import CollectionRef
19
-from google.cloud.firestore.document import DocumentResult
+from google.cloud.firestore.collection import Query
20
from google.cloud.firestore.document import DocumentRef
21
+from google.cloud.firestore.document import DocumentResult
22
23
24
__all__ = [
25
'Client',
26
'DocumentResult',
27
'DocumentRef',
28
'CollectionRef',
29
+ 'Query',
30
]
0 commit comments