File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,8 @@ the collection named ``Movies``, use ``set()`` method.
56
56
Read Data
57
57
---------
58
58
59
- To read data from an existing document of an collection, use ``get() `` method.
59
+ To read data from an existing document ``Movies `` of the collection
60
+ ``Marvels ``, use ``get() `` method.
60
61
61
62
.. code-block :: python
62
63
@@ -77,6 +78,19 @@ It is possible to filter the data of an document to receive specific fields.
77
78
78
79
79
80
81
+ To fetch data regarding all existing document (document ID and the data
82
+ it contains) of an collection ``Marvels ``, use ``get() `` method.
83
+
84
+ .. code-block :: python
85
+
86
+ fsdb.collection(' Marvels' ).get()
87
+ ..
88
+
89
+ .. note ::
90
+ The ``get() `` method use after ``collection() `` method and
91
+ ``document() `` method are **NOT SAME **. They both accept and
92
+ return different type of values.
93
+
80
94
Update Data
81
95
-----------
82
96
You can’t perform that action at this time.
0 commit comments