File tree Expand file tree Collapse file tree 4 files changed +12
-13
lines changed Expand file tree Collapse file tree 4 files changed +12
-13
lines changed Original file line number Diff line number Diff line change @@ -19,3 +19,6 @@ raw: ${prefix}/stable -> ${base}/current/
19
19
20
20
[v4.3-master]: ${prefix}/${version}/fundamentals/utf8-validation/ -> ${base}/${version}/fundamentals/bson/utf8-validation/
21
21
[*-v4.2]: ${prefix}/${version}/fundamentals/utf8-validation/ -> ${base}/${version}/
22
+
23
+ [*-v5.5]: ${prefix}/${version}/fundamentals/run-command/ -> ${base}/${version}/usage-examples/command/
24
+ [*-master]: ${prefix}/${version}/fundamentals/crud/write-operations/change-a-document/ -> ${base}/${version}/fundamentals/crud/write-operations/modify/
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ Write Operations
7
7
- :doc:`/fundamentals/crud/write-operations/insert`
8
8
- :doc:`/fundamentals/crud/write-operations/pkFactory`
9
9
- :doc:`/fundamentals/crud/write-operations/delete`
10
- - :doc:`/fundamentals/crud/write-operations/change-a-document `
10
+ - :doc:`/fundamentals/crud/write-operations/modify `
11
11
- :doc:`/fundamentals/crud/write-operations/embedded-arrays`
12
12
- :doc:`/fundamentals/crud/write-operations/upsert`
13
13
@@ -17,7 +17,7 @@ Write Operations
17
17
/fundamentals/crud/write-operations/insert
18
18
/fundamentals/crud/write-operations/pkFactory
19
19
/fundamentals/crud/write-operations/delete
20
- /fundamentals/crud/write-operations/change-a-document
20
+ /fundamentals/crud/write-operations/modify
21
21
/fundamentals/crud/write-operations/embedded-arrays
22
22
/fundamentals/crud/write-operations/upsert
23
23
Original file line number Diff line number Diff line change 1
1
.. _node-fundamentals-delete:
2
2
3
- =================
4
- Delete a Document
5
- =================
6
-
7
- .. default-domain:: mongodb
3
+ ================
4
+ Delete Documents
5
+ ================
8
6
9
7
.. contents:: On this page
10
8
:local:
Original file line number Diff line number Diff line change 1
1
.. _node-fundamentals-change-a-document:
2
2
3
- =================
4
- Change a Document
5
- =================
6
-
7
- .. default-domain:: mongodb
3
+ ================
4
+ Modify Documents
5
+ ================
8
6
9
7
.. contents:: On this page
10
8
:local:
@@ -15,7 +13,7 @@ Change a Document
15
13
Overview
16
14
--------
17
15
18
- You can change documents in a MongoDB collection using either **update**
16
+ You can modify documents in a MongoDB collection using either **update**
19
17
or **replace** operations. Update operations mutate
20
18
specified fields in one or more documents and leave other fields and values
21
19
unchanged. Replace operations remove all existing fields in one or more
You can’t perform that action at this time.
0 commit comments