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.
1 parent 45302f8 commit 9df189bCopy full SHA for 9df189b
snippets/firestore/firestore_pipelines.py
@@ -65,10 +65,6 @@ def basic_read():
65
pipeline = client.pipeline().collection("users")
66
for result in pipeline.execute():
67
print(f"{result.id} => {result.data()}")
68
- # or, asynchronously
69
- result_stream = pipeline.stream()
70
- async for result in result_stream:
71
- print(f"{result.id} => {result.data()}")
72
# [END basic_read]
73
74
0 commit comments