@@ -38,8 +38,7 @@ Compatibility
3838 * - | **Find a Document**
3939 |
4040 | `API Documentation <{+api+}/classes/Collection.html#findOne>`__
41- | :ref:`Usage Example <node-usage-findone>`
42- | :ref:`Query Operations <node-query>`
41+ | :ref:`Find Documents Guide <node-find>`
4342
4443 - .. io-code-block::
4544 :copyable: true
@@ -58,8 +57,7 @@ Compatibility
5857 * - | **Find Multiple Documents**
5958 |
6059 | `API Documentation <{+api+}/classes/Collection.html#find>`__
61- | :ref:`Usage Example <node-usage-find>`
62- | :ref:`Fundamentals <node-fundamentals-retrieve-data>`
60+ | :ref:`Find Documents Guide <node-find>`
6361
6462 - .. io-code-block::
6563 :copyable: true
@@ -82,8 +80,7 @@ Compatibility
8280 * - | **Insert a Document**
8381 |
8482 | `API Documentation <{+api+}/classes/Collection.html#insert>`__
85- | :ref:`Usage Example <node-usage-insert>`
86- | :ref:`Fundamentals <node-fundamentals-insert-data>`
83+ | :ref:`Insert Documents Guide <node-insert>`
8784
8885 - .. code-block:: javascript
8986 :copyable: true
@@ -93,8 +90,7 @@ Compatibility
9390 * - | **Insert Multiple Documents**
9491 |
9592 | `API Documentation <{+api+}/classes/Collection.html#insertMany>`__
96- | :ref:`Usage Example <node-usage-insertmany>`
97- | :ref:`Fundamentals <node-fundamentals-insert-data>`
93+ | :ref:`Insert Documents Guide <node-insert>`
9894
9995 - .. code-block:: javascript
10096 :copyable: true
@@ -107,8 +103,7 @@ Compatibility
107103 * - | **Update a Document**
108104 |
109105 | `API Documentation <{+api+}/classes/Collection.html#update>`__
110- | :ref:`Usage Example <node-usage-updateone>`
111- | :ref:`Fundamentals <node-fundamentals-change-a-document>`
106+ | :ref:`Update Documents Guide <node-update>`
112107
113108 - .. io-code-block::
114109 :copyable: true
@@ -130,8 +125,7 @@ Compatibility
130125 * - | **Update Multiple Documents**
131126 |
132127 | `API Documentation <{+api+}/classes/Collection.html#updateMany>`__
133- | :ref:`Usage Example <node-usage-updatemany>`
134- | :ref:`Fundamentals <node-fundamentals-change-a-document>`
128+ | :ref:`Update Documents Guide <node-update>`
135129
136130 - .. io-code-block::
137131 :copyable: true
@@ -157,7 +151,7 @@ Compatibility
157151 * - | **Update Arrays in Documents**
158152 |
159153 | `API Documentation <{+api+}/classes/Collection.html#update>`__
160- | :ref:`Fundamentals <node-fundamentals- update-array >`
154+ | :ref:`Update Arrays in a Document Guide <node-update-arrays >`
161155
162156 - .. io-code-block::
163157 :copyable: true
@@ -179,8 +173,7 @@ Compatibility
179173 * - | **Replace a Document**
180174 |
181175 | `API Documentation <{+api+}/classes/Collection.html#replaceOne>`__
182- | :ref:`Usage Example <node-usage-replaceone>`
183- | :ref:`Fundamentals <node-fundamentals-replaceone>`
176+ | :ref:`Replace Documents Guide <node-replace>`
184177
185178 - .. io-code-block::
186179 :copyable: true
@@ -202,8 +195,7 @@ Compatibility
202195 * - | **Delete a Document**
203196 |
204197 | `API Documentation <{+api+}/classes/Collection.html#deleteOne>`__
205- | :ref:`Usage Example <node-usage-deleteone>`
206- | :ref:`Fundamentals <node-fundamentals-delete>`
198+ | :ref:`Delete Documents Guide <node-delete>`
207199
208200 - .. code-block:: javascript
209201 :copyable: true
@@ -213,8 +205,7 @@ Compatibility
213205 * - | **Delete Multiple Documents**
214206 |
215207 | `API Documentation <{+api+}/classes/Collection.html#deleteMany>`__
216- | :ref:`Usage Example <node-usage-deletemany>`
217- | :ref:`Fundamentals <node-fundamentals-delete>`
208+ | :ref:`Delete Documents Guide <node-delete>`
218209
219210 - .. code-block:: javascript
220211 :copyable: true
@@ -224,7 +215,7 @@ Compatibility
224215 * - | **Bulk Write**
225216 |
226217 | `API Documentation <{+api+}/classes/Collection.html#bulkWrite>`__
227- | :ref:`Usage Example <node-usage- bulk>`
218+ | :ref:`Bulk Operations Guide <node-bulk-write >`
228219
229220 - .. io-code-block::
230221 :copyable: true
@@ -262,8 +253,7 @@ Compatibility
262253 * - | **Watch for Changes**
263254 |
264255 | `API Documentation <{+api+}/classes/Collection.html#watch>`__
265- | :ref:`Usage Example <node-usage-watch>`
266- | :ref:`Fundamentals <node-fundamentals-watch>`
256+ | :ref:`Monitor Data with Change Streams Guide <node-change-streams>`
267257
268258 - .. code-block:: javascript
269259 :copyable: true
@@ -272,7 +262,7 @@ Compatibility
272262
273263 * - | **Access Data from a Cursor Iteratively**
274264 |
275- | :ref:`Fundamentals <node-fundamentals-async-iteration >`
265+ | :ref:`Access Data from a Cursor Guide <node-cursor >`
276266
277267 - .. io-code-block::
278268 :copyable: true
@@ -298,7 +288,7 @@ Compatibility
298288 * - | **Access Data from a Cursor as an Array**
299289 |
300290 | `API Documentation <{+api+}/classes/FindCursor.html#toArray>`__
301- | :ref:`Fundamentals <node-fundamentals- cursor-array >`
291+ | :ref:`Access Data from a Cursor Guide <node-cursor>`
302292
303293 - .. io-code-block::
304294 :copyable: true
@@ -322,7 +312,7 @@ Compatibility
322312 * - | **Count Documents**
323313 |
324314 | `API Documentation <{+api+}/classes/Collection.html#countDocuments>`__
325- | :ref:`Usage Example <node-usage -count>`
315+ | :ref:`Count Documents Guide <node-count>`
326316
327317 - .. io-code-block::
328318 :copyable: true
@@ -340,8 +330,7 @@ Compatibility
340330
341331 * - | **List the Distinct Documents or Field Values**
342332 | `API Documentation <{+api+}/classes/Collection.html#distinct>`__
343- | :ref:`Usage Example <node-usage-distinct>`
344- | :ref:`Fundamentals <node-fundamentals-limit>`
333+ | :ref:`Retrieve Distinct Values Guide <node-distinct>`
345334
346335 - .. io-code-block::
347336 :copyable: true
@@ -360,7 +349,7 @@ Compatibility
360349 * - | **Limit the Number of Documents Retrieved**
361350 |
362351 | `API Documentation <{+api+}/classes/FindCursor.html#limit>`__
363- | :ref:`Fundamentals <node-fundamentals-limit>`
352+ | :ref:`Limit Documents Reference <node-fundamentals-limit>`
364353
365354 - .. io-code-block::
366355 :copyable: true
@@ -382,7 +371,7 @@ Compatibility
382371 * - | **Skip Retrieved Documents**
383372 |
384373 | `API Documentation <{+api+}/classes/FindCursor.html#skip>`__
385- | :ref:`Fundamentals <node-fundamentals-skip>`
374+ | :ref:`Skip Documents Reference <node-fundamentals-skip>`
386375
387376 - .. io-code-block::
388377 :copyable: true
@@ -405,7 +394,7 @@ Compatibility
405394 * - | **Sort the Documents When Retrieving Them**
406395 |
407396 | `API Documentation <{+api+}/classes/FindCursor.html#sort>`__
408- | :ref:`Fundamentals <node-fundamentals-sort>`
397+ | :ref:`Sort Documents Reference <node-fundamentals-sort>`
409398
410399 - .. io-code-block::
411400 :copyable: true
@@ -429,7 +418,7 @@ Compatibility
429418 * - | **Project Document Fields When Retrieving Them**
430419 |
431420 | `API Documentation <{+api+}/classes/FindCursor.html#project>`__
432- | :ref:`Fundamentals <node-fundamentals -project>`
421+ | :ref:`Specify Which Fields to Return Guide <node-project>`
433422
434423 - .. io-code-block::
435424 :copyable: true
@@ -452,7 +441,7 @@ Compatibility
452441 * - | **Create an Index**
453442 |
454443 | `API Documentation <{+api+}/classes/Collection.html#createIndex>`__
455- | :ref:`Fundamentals <node-fundamentals-indexes>`
444+ | :ref:`Indexes Guide <node-fundamentals-indexes>`
456445
457446 - .. code-block:: javascript
458447 :copyable: true
@@ -462,7 +451,7 @@ Compatibility
462451 * - | **Search Text**
463452 |
464453 | `API Documentation <{+api+}/classes/Collection.html#find>`__
465- | :ref:`Fundamentals <node-fundamentals -text>`
454+ | :ref:`Search Text Guide <node-search -text>`
466455
467456 - .. io-code-block::
468457 :copyable: true
0 commit comments