diff --git a/source/fundamentals.txt b/source/fundamentals.txt index 97d5d6f9..8f9c019c 100644 --- a/source/fundamentals.txt +++ b/source/fundamentals.txt @@ -6,23 +6,23 @@ Fundamentals :titlesonly: :maxdepth: 1 - /fundamentals/connections - /fundamentals/stable-api - /fundamentals/context - /fundamentals/auth - /fundamentals/enterprise-auth - /fundamentals/bson - /fundamentals/crud - /fundamentals/aggregation - /fundamentals/indexes - /fundamentals/transactions - /fundamentals/logging - /fundamentals/run-command - /fundamentals/collations - /fundamentals/monitoring - /fundamentals/gridfs - /fundamentals/time-series - /fundamentals/encrypt-fields - /fundamentals/geo + Connections + Stable API + Context + Authentication + Enterprise Authentication + BSON + CRUD Operations + Aggregation + Indexes + Transactions + Logging + Run a Command + Collations + Monitoring + GridFS + Time Series Collections + In-Use Encryption + Geospatial Data .. include:: /includes/fundamentals-sections.rst diff --git a/source/fundamentals/connections.txt b/source/fundamentals/connections.txt index 172dd16b..b6395051 100644 --- a/source/fundamentals/connections.txt +++ b/source/fundamentals/connections.txt @@ -6,10 +6,10 @@ Connections .. toctree:: - /fundamentals/connections/connection-guide - /fundamentals/connections/network-compression - /fundamentals/connections/tls - Connect to MongoDB Atlas from AWS Lambda + Connection Guide + Network Compression + Configure TLS + Connect with AWS Lambda .. contents:: On this page :local: diff --git a/source/fundamentals/crud.txt b/source/fundamentals/crud.txt index b8f0fc90..a2d4642d 100644 --- a/source/fundamentals/crud.txt +++ b/source/fundamentals/crud.txt @@ -7,10 +7,10 @@ CRUD Operations .. toctree:: :caption: CRUD Operations - /fundamentals/crud/read-operations - /fundamentals/crud/write-operations - /fundamentals/crud/compound-operations - /fundamentals/crud/write-read-pref + Read + Write + Compound Operations + Modify CRUD Execution CRUD (Create, Read, Update, Delete) operations enable you to work with data stored in MongoDB. diff --git a/source/fundamentals/crud/read-operations.txt b/source/fundamentals/crud/read-operations.txt index ee2b97d5..77116482 100644 --- a/source/fundamentals/crud/read-operations.txt +++ b/source/fundamentals/crud/read-operations.txt @@ -7,6 +7,20 @@ Read Operations .. meta:: :description: Learn about the commands for running MongoDB read operations by using the {+driver-long+}. +.. toctree:: + :caption: Read Operations + + Query + Count Documents + Data Cursors + Distinct Field Values + Sort Results + Skip Results + Limit Results + Specify Fields to Return + Search Text + Monitor Data Changes + - :ref:`golang-query-document` - :ref:`golang-count-documents` - :ref:`golang-retrieve` @@ -18,18 +32,3 @@ Read Operations - :ref:`golang-project` - :ref:`golang-search-text` - :ref:`golang-monitor-changes` - -.. toctree:: - :caption: Read Operations - - /fundamentals/crud/read-operations/query-document - /fundamentals/crud/read-operations/count - /fundamentals/crud/read-operations/retrieve - /fundamentals/crud/read-operations/cursor - /fundamentals/crud/read-operations/distinct - /fundamentals/crud/read-operations/sort - /fundamentals/crud/read-operations/skip - /fundamentals/crud/read-operations/limit - /fundamentals/crud/read-operations/project - /fundamentals/crud/read-operations/text - /fundamentals/crud/read-operations/changestream diff --git a/source/fundamentals/crud/write-operations.txt b/source/fundamentals/crud/write-operations.txt index 79a58ab4..657a6128 100644 --- a/source/fundamentals/crud/write-operations.txt +++ b/source/fundamentals/crud/write-operations.txt @@ -7,19 +7,19 @@ Write Operations .. meta:: :description: Learn about the commands for running MongoDB write operations by using the {+driver-long+}. +.. toctree:: + :caption: Write Operations + + Insert + Delete + Modify + Update + Upsert + Bulk Operations + - :ref:`golang-insert-guide` - :ref:`golang-delete-guide` - :ref:`golang-change-document` - :ref:`golang-update-arrays` - :ref:`golang-upsert-guide` - :ref:`golang-bulk` - -.. toctree:: - :caption: Write Operations - - /fundamentals/crud/write-operations/insert - /fundamentals/crud/write-operations/delete - /fundamentals/crud/write-operations/modify - /fundamentals/crud/write-operations/embedded-arrays - /fundamentals/crud/write-operations/upsert - /fundamentals/crud/write-operations/bulk diff --git a/source/fundamentals/monitoring.txt b/source/fundamentals/monitoring.txt index 7a60020b..d6944765 100644 --- a/source/fundamentals/monitoring.txt +++ b/source/fundamentals/monitoring.txt @@ -7,9 +7,9 @@ Monitoring .. toctree:: :caption: Monitoring categories - /fundamentals/monitoring/cluster-monitoring - /fundamentals/monitoring/command-monitoring - /fundamentals/monitoring/connection-monitoring + Cluster Monitoring + Command Monitoring + Connection Monitoring - :ref:`Cluster Monitoring `: monitor changes in your cluster configuration diff --git a/source/index.txt b/source/index.txt index dae2c702..6d270135 100644 --- a/source/index.txt +++ b/source/index.txt @@ -11,15 +11,15 @@ :maxdepth: 1 Quick Start - /quick-reference - /whats-new - /usage-examples - /fundamentals + Quick Reference + What's New + Usage Examples + Fundamentals API Documentation <{+api+}/mongo> - /faq - /connection-troubleshooting - /issues-and-help - /compatibility + FAQ + Connection Troubleshooting + Issues & Help + Compatibility View the Source .. diff --git a/source/usage-examples.txt b/source/usage-examples.txt index 3f529ab2..40b8b5b2 100644 --- a/source/usage-examples.txt +++ b/source/usage-examples.txt @@ -19,14 +19,14 @@ Usage Examples .. toctree:: - /usage-examples/find-operations - /usage-examples/write-operations - /usage-examples/bulkWrite - /usage-examples/changestream - /usage-examples/count - /usage-examples/distinct - /usage-examples/command - /usage-examples/struct-tagging + Find Operations + Write Operations + Bulk Operations + Monitor Data Changes + Count Documents + Distinct Field Values + Run a Command + Use Struct Tags Overview -------- diff --git a/source/usage-examples/find-operations.txt b/source/usage-examples/find-operations.txt index b6a9b9e9..44431779 100644 --- a/source/usage-examples/find-operations.txt +++ b/source/usage-examples/find-operations.txt @@ -11,5 +11,5 @@ Find Operations .. toctree:: :caption: Examples - /usage-examples/findOne - /usage-examples/find + Find One + Find Many diff --git a/source/usage-examples/write-operations.txt b/source/usage-examples/write-operations.txt index adf758f5..31017bcf 100644 --- a/source/usage-examples/write-operations.txt +++ b/source/usage-examples/write-operations.txt @@ -16,10 +16,10 @@ Write Operations .. toctree:: :caption: Examples - /usage-examples/insertOne - /usage-examples/insertMany - /usage-examples/updateOne - /usage-examples/updateMany - /usage-examples/replaceOne - /usage-examples/deleteOne - /usage-examples/deleteMany + Insert One + Insert Many + Update One + Update Many + Replace One + Delete One + Delete Many