File tree Expand file tree Collapse file tree 1 file changed +1
-15
lines changed Expand file tree Collapse file tree 1 file changed +1
-15
lines changed Original file line number Diff line number Diff line change @@ -12,9 +12,7 @@ Database.
12
12
13
13
.. note ::
14
14
Each of the following methods accepts a user token:
15
- :ref: `get()<guide/firestore:get> `, :ref: `set()<guide/firestore:set> `,
16
- :ref: `update()<guide/firestore:update> `, and
17
- :ref: `delete()<guide/firestore:delete> `.
15
+ ``get() ``, ``set() ``, ``update() ``, and ``delete() ``.
18
16
19
17
20
18
Build Path
@@ -32,9 +30,6 @@ You can build paths to your data by using the ``collection()`` and ``document()`
32
30
Save Data
33
31
---------
34
32
35
- set
36
- ^^^
37
-
38
33
To store data in a collection named ``Marvels `` and a document inside
39
34
the collection named ``Movies ``, use ``set() `` method.
40
35
@@ -59,9 +54,6 @@ the collection named ``Movies``, use ``set()`` method.
59
54
Read Data
60
55
---------
61
56
62
- get
63
- ^^^
64
-
65
57
To read data from an existing document of an collection, use ``get() `` method.
66
58
67
59
.. code-block :: python
@@ -84,9 +76,6 @@ It is possible to filter the data of an document to receive specific fields.
84
76
Update Data
85
77
-----------
86
78
87
- update
88
- ^^^^^^
89
-
90
79
To update existing data or add more data to an existing document, use
91
80
``update() `` method.
92
81
@@ -116,9 +105,6 @@ To update existing data or add more data to an existing document, use
116
105
Delete Data
117
106
-----------
118
107
119
- delete
120
- ^^^^^^
121
-
122
108
To remove an existing document in a collection, use ``delete() ``
123
109
method.
124
110
You can’t perform that action at this time.
0 commit comments