Skip to content

Commit 11b50f9

Browse files
DOCSP-44899 TOC Relabel (#404) (#407) (#412)
* DOCSP-44899 TOC Relabel * last few * fixes * apply standard changes * remove documents * last edit * shorten on read ops (cherry picked from commit cb99bee) (cherry picked from commit ef73c65) Co-authored-by: lindseymoore <[email protected]>
1 parent bf4c6fd commit 11b50f9

10 files changed

+78
-79
lines changed

source/fundamentals.txt

+18-18
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,23 @@ Fundamentals
66
:titlesonly:
77
:maxdepth: 1
88

9-
/fundamentals/connections
10-
/fundamentals/stable-api
11-
/fundamentals/context
12-
/fundamentals/auth
13-
/fundamentals/enterprise-auth
14-
/fundamentals/bson
15-
/fundamentals/crud
16-
/fundamentals/aggregation
17-
/fundamentals/indexes
18-
/fundamentals/transactions
19-
/fundamentals/logging
20-
/fundamentals/run-command
21-
/fundamentals/collations
22-
/fundamentals/monitoring
23-
/fundamentals/gridfs
24-
/fundamentals/time-series
25-
/fundamentals/encrypt-fields
26-
/fundamentals/geo
9+
Connections </fundamentals/connections>
10+
Stable API </fundamentals/stable-api>
11+
Context </fundamentals/context>
12+
Authentication </fundamentals/auth>
13+
Enterprise Authentication </fundamentals/enterprise-auth>
14+
BSON </fundamentals/bson>
15+
CRUD Operations </fundamentals/crud>
16+
Aggregation </fundamentals/aggregation>
17+
Indexes </fundamentals/indexes>
18+
Transactions </fundamentals/transactions>
19+
Logging </fundamentals/logging>
20+
Run a Command </fundamentals/run-command>
21+
Collations </fundamentals/collations>
22+
Monitoring </fundamentals/monitoring>
23+
GridFS </fundamentals/gridfs>
24+
Time Series Collections </fundamentals/time-series>
25+
In-Use Encryption </fundamentals/encrypt-fields>
26+
Geospatial Data </fundamentals/geo>
2727

2828
.. include:: /includes/fundamentals-sections.rst

source/fundamentals/connections.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ Connections
66

77
.. toctree::
88

9-
/fundamentals/connections/connection-guide
10-
/fundamentals/connections/network-compression
11-
/fundamentals/connections/tls
12-
Connect to MongoDB Atlas from AWS Lambda <https://www.mongodb.com/docs/atlas/manage-connections-aws-lambda/>
9+
Connection Guide </fundamentals/connections/connection-guide>
10+
Network Compression </fundamentals/connections/network-compression>
11+
Configure TLS </fundamentals/connections/tls>
12+
Connect with AWS Lambda <https://www.mongodb.com/docs/atlas/manage-connections-aws-lambda/>
1313

1414
.. contents:: On this page
1515
:local:

source/fundamentals/crud.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ CRUD Operations
77
.. toctree::
88
:caption: CRUD Operations
99

10-
/fundamentals/crud/read-operations
11-
/fundamentals/crud/write-operations
12-
/fundamentals/crud/compound-operations
13-
/fundamentals/crud/write-read-pref
10+
Read </fundamentals/crud/read-operations>
11+
Write </fundamentals/crud/write-operations>
12+
Compound Operations </fundamentals/crud/compound-operations>
13+
Modify CRUD Execution </fundamentals/crud/write-read-pref>
1414

1515
CRUD (Create, Read, Update, Delete) operations enable you to work with
1616
data stored in MongoDB.

source/fundamentals/crud/read-operations.txt

+14-15
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,20 @@ Read Operations
77
.. meta::
88
:description: Learn about the commands for running MongoDB read operations by using the {+driver-long+}.
99

10+
.. toctree::
11+
:caption: Read Operations
12+
13+
Query </fundamentals/crud/read-operations/query-document>
14+
Count Documents </fundamentals/crud/read-operations/count>
15+
Data Cursors </fundamentals/crud/read-operations/cursor>
16+
Distinct Field Values </fundamentals/crud/read-operations/distinct>
17+
Sort Results </fundamentals/crud/read-operations/sort>
18+
Skip Results </fundamentals/crud/read-operations/skip>
19+
Limit Results </fundamentals/crud/read-operations/limit>
20+
Specify Fields to Return </fundamentals/crud/read-operations/project>
21+
Search Text </fundamentals/crud/read-operations/text>
22+
Monitor Data Changes </fundamentals/crud/read-operations/changestream>
23+
1024
- :ref:`golang-query-document`
1125
- :ref:`golang-count-documents`
1226
- :ref:`golang-retrieve`
@@ -18,18 +32,3 @@ Read Operations
1832
- :ref:`golang-project`
1933
- :ref:`golang-search-text`
2034
- :ref:`golang-monitor-changes`
21-
22-
.. toctree::
23-
:caption: Read Operations
24-
25-
/fundamentals/crud/read-operations/query-document
26-
/fundamentals/crud/read-operations/count
27-
/fundamentals/crud/read-operations/retrieve
28-
/fundamentals/crud/read-operations/cursor
29-
/fundamentals/crud/read-operations/distinct
30-
/fundamentals/crud/read-operations/sort
31-
/fundamentals/crud/read-operations/skip
32-
/fundamentals/crud/read-operations/limit
33-
/fundamentals/crud/read-operations/project
34-
/fundamentals/crud/read-operations/text
35-
/fundamentals/crud/read-operations/changestream

source/fundamentals/crud/write-operations.txt

+10-10
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@ Write Operations
77
.. meta::
88
:description: Learn about the commands for running MongoDB write operations by using the {+driver-long+}.
99

10+
.. toctree::
11+
:caption: Write Operations
12+
13+
Insert </fundamentals/crud/write-operations/insert>
14+
Delete </fundamentals/crud/write-operations/delete>
15+
Modify </fundamentals/crud/write-operations/modify>
16+
Update </fundamentals/crud/write-operations/embedded-arrays>
17+
Upsert </fundamentals/crud/write-operations/upsert>
18+
Bulk Operations </fundamentals/crud/write-operations/bulk>
19+
1020
- :ref:`golang-insert-guide`
1121
- :ref:`golang-delete-guide`
1222
- :ref:`golang-change-document`
1323
- :ref:`golang-update-arrays`
1424
- :ref:`golang-upsert-guide`
1525
- :ref:`golang-bulk`
16-
17-
.. toctree::
18-
:caption: Write Operations
19-
20-
/fundamentals/crud/write-operations/insert
21-
/fundamentals/crud/write-operations/delete
22-
/fundamentals/crud/write-operations/modify
23-
/fundamentals/crud/write-operations/embedded-arrays
24-
/fundamentals/crud/write-operations/upsert
25-
/fundamentals/crud/write-operations/bulk

source/fundamentals/monitoring.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ Monitoring
77
.. toctree::
88
:caption: Monitoring categories
99

10-
/fundamentals/monitoring/cluster-monitoring
11-
/fundamentals/monitoring/command-monitoring
12-
/fundamentals/monitoring/connection-monitoring
10+
Cluster Monitoring </fundamentals/monitoring/cluster-monitoring>
11+
Command Monitoring </fundamentals/monitoring/command-monitoring>
12+
Connection Monitoring </fundamentals/monitoring/connection-monitoring>
1313

1414
- :ref:`Cluster Monitoring <golang-cluster-monitoring>`: monitor changes
1515
in your cluster configuration

source/index.txt

+8-8
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111
:maxdepth: 1
1212

1313
Quick Start </quick-start>
14-
/quick-reference
15-
/whats-new
16-
/usage-examples
17-
/fundamentals
14+
Quick Reference </quick-reference>
15+
What's New </whats-new>
16+
Usage Examples </usage-examples>
17+
Fundamentals </fundamentals>
1818
API Documentation <{+api+}/mongo>
19-
/faq
20-
/connection-troubleshooting
21-
/issues-and-help
22-
/compatibility
19+
FAQ </faq>
20+
Connection Troubleshooting </connection-troubleshooting>
21+
Issues & Help </issues-and-help>
22+
Compatibility </compatibility>
2323
View the Source <https://github.com/mongodb/mongo-go-driver>
2424

2525
..

source/usage-examples.txt

+8-8
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ Usage Examples
1919

2020
.. toctree::
2121

22-
/usage-examples/find-operations
23-
/usage-examples/write-operations
24-
/usage-examples/bulkWrite
25-
/usage-examples/changestream
26-
/usage-examples/count
27-
/usage-examples/distinct
28-
/usage-examples/command
29-
/usage-examples/struct-tagging
22+
Find Operations </usage-examples/find-operations>
23+
Write Operations </usage-examples/write-operations>
24+
Bulk Operations </usage-examples/bulkWrite>
25+
Monitor Data Changes </usage-examples/changestream>
26+
Count Documents </usage-examples/count>
27+
Distinct Field Values </usage-examples/distinct>
28+
Run a Command </usage-examples/command>
29+
Use Struct Tags </usage-examples/struct-tagging>
3030

3131
Overview
3232
--------

source/usage-examples/find-operations.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ Find Operations
1111
.. toctree::
1212
:caption: Examples
1313

14-
/usage-examples/findOne
15-
/usage-examples/find
14+
Find One </usage-examples/findOne>
15+
Find Many </usage-examples/find>

source/usage-examples/write-operations.txt

+7-7
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ Write Operations
1616
.. toctree::
1717
:caption: Examples
1818

19-
/usage-examples/insertOne
20-
/usage-examples/insertMany
21-
/usage-examples/updateOne
22-
/usage-examples/updateMany
23-
/usage-examples/replaceOne
24-
/usage-examples/deleteOne
25-
/usage-examples/deleteMany
19+
Insert One </usage-examples/insertOne>
20+
Insert Many </usage-examples/insertMany>
21+
Update One </usage-examples/updateOne>
22+
Update Many </usage-examples/updateMany>
23+
Replace One </usage-examples/replaceOne>
24+
Delete One </usage-examples/deleteOne>
25+
Delete Many </usage-examples/deleteMany>

0 commit comments

Comments
 (0)