File tree Expand file tree Collapse file tree 12 files changed +74
-74
lines changed Expand file tree Collapse file tree 12 files changed +74
-74
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Transform Your Data with Aggregation
2222 :titlesonly:
2323 :maxdepth: 1
2424
25- /aggregation/aggregation-tutorials
25+ Tutorials < /aggregation/aggregation-tutorials>
2626
2727Overview
2828--------
Original file line number Diff line number Diff line change @@ -19,11 +19,11 @@ Aggregation Tutorials
1919
2020.. toctree::
2121
22- /aggregation/aggregation-tutorials/filtered-subset/
23- /aggregation/aggregation-tutorials/group-total/
24- /aggregation/aggregation-tutorials/unpack-arrays/
25- /aggregation/aggregation-tutorials/one-to-one-join/
26- /aggregation/aggregation-tutorials/multi-field-join/
22+ Filtered Subset < /aggregation/aggregation-tutorials/filtered-subset/>
23+ Group & Total < /aggregation/aggregation-tutorials/group-total/>
24+ Unpack Arrays & Group < /aggregation/aggregation-tutorials/unpack-arrays/>
25+ One-to-One Join < /aggregation/aggregation-tutorials/one-to-one-join/>
26+ Multi-Field Join < /aggregation/aggregation-tutorials/multi-field-join/>
2727
2828Overview
2929--------
Original file line number Diff line number Diff line change @@ -22,14 +22,14 @@ Connect to MongoDB
2222 :titlesonly:
2323 :maxdepth: 1
2424
25- /connect/mongoclient
26- /connect/connection-targets
27- /connect/connection-options
28- /connect/tls
29- /connect/network-compression
30- /connect/server-selection
31- /connect/stable-api
32- /connect/csot
25+ Create a MongoClient < /connect/mongoclient>
26+ Choose a Connection Target < /connect/connection-targets>
27+ Specify Connection Options < /connect/connection-options>
28+ Configure TLS < /connect/tls>
29+ Compress Network Traffic < /connect/network-compression>
30+ Customize Server Selection < /connect/server-selection>
31+ Stable API < /connect/stable-api>
32+ Limit Server Execution Time < /connect/csot>
3333
3434Overview
3535--------
Original file line number Diff line number Diff line change @@ -21,10 +21,10 @@ Specialized Data Formats
2121 :titlesonly:
2222 :maxdepth: 1
2323
24- /data-formats/custom-types
25- /data-formats/dates-and-times
26- /data-formats/uuid
27- /data-formats/time-series
24+ Custom Types < /data-formats/custom-types>
25+ Dates & Times < /data-formats/dates-and-times>
26+ UUIDs < /data-formats/uuid>
27+ Time Series Data < /data-formats/time-series>
2828
2929Overview
3030--------
Original file line number Diff line number Diff line change @@ -20,11 +20,11 @@ Get Started with {+driver-short+}
2020
2121.. toctree::
2222
23- /get-started/download-and-install/
24- /get-started/create-a-deployment/
25- /get-started/create-a-connection-string/
26- /get-started/connect-to-mongodb/
27- /get-started/next-steps/
23+ Download & Install < /get-started/download-and-install/>
24+ Create a Deployment < /get-started/create-a-deployment/>
25+ Create a Connection String < /get-started/create-a-connection-string/>
26+ Connect < /get-started/connect-to-mongodb/>
27+ Next Steps < /get-started/next-steps/>
2828
2929Overview
3030--------
Original file line number Diff line number Diff line change @@ -13,25 +13,25 @@ MongoDB {+driver-short+} Documentation
1313.. toctree::
1414
1515 Get Started </get-started>
16- /connect
17- /databases-collections
18- /write-operations
19- /read
20- /run-command
21- /indexes
22- /aggregation
23- /security
24- /data-formats
25- /tools
26- /faq
27- /troubleshooting
28- /whats-new
29- /upgrade
30- /motor-async-migration
31- /pymongo-to-async-guide
32- /previous-versions
33- /issues-and-help
34- /compatibility
16+ Connect < /connect>
17+ Databases & Collections < /databases-collections>
18+ Write Data < /write-operations>
19+ Read Data < /read>
20+ Run a Database Command < /run-command>
21+ Indexes < /indexes>
22+ Aggregation < /aggregation>
23+ Security < /security>
24+ Data Formats < /data-formats>
25+ Third-Party Tools < /tools>
26+ FAQ < /faq>
27+ Troubleshooting < /troubleshooting>
28+ What's New < /whats-new>
29+ Upgrade < /upgrade>
30+ Migrate from Motor < /motor-async-migration>
31+ Switch to PyMongo Async < /pymongo-to-async-guide>
32+ Previous Versions < /previous-versions>
33+ Issues & Help < /issues-and-help>
34+ Compatibility < /compatibility>
3535 API Documentation <{+api-root+}>
3636
3737Overview
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Optimize Queries with Indexes
2222 :titlesonly:
2323 :maxdepth: 1
2424
25- /work-with-indexes
25+ Work with Indexes < /work-with-indexes>
2626
2727Overview
2828--------
Original file line number Diff line number Diff line change 11.. _pymongo-single-field-index:
22
33====================
4- Single- Field Indexes
4+ Single Field Indexes
55====================
66
77.. contents:: On this page
@@ -20,13 +20,13 @@ Single-Field Indexes
2020Overview
2121--------
2222
23- :manual:`Single- field indexes </core/index-single/>` are indexes with a reference to a single field within a collection's
23+ :manual:`Single field indexes </core/index-single/>` are indexes with a reference to a single field within a collection's
2424documents. They improve single field query and sort performance, and support :manual:`TTL Indexes </core/index-ttl>` that
2525automatically remove documents from a collection after a certain amount of time or at a specific clock time.
2626
2727.. note::
2828
29- The ``_id_`` index is an example of a single- field index. This index is automatically created on the ``_id`` field
29+ The ``_id_`` index is an example of a single field index. This index is automatically created on the ``_id`` field
3030 when a new collection is created.
3131
3232Sample Data
@@ -37,7 +37,7 @@ from the :atlas:`Atlas sample datasets </sample-data>`. To learn how to create a
3737free MongoDB Atlas cluster and load the sample datasets, see the
3838:ref:`<pymongo-get-started>`.
3939
40- Create Single- Field Index
40+ Create Single Field Index
4141-------------------------
4242
4343The following example creates an index in ascending order on the ``title`` field:
Original file line number Diff line number Diff line change @@ -22,14 +22,14 @@ Read Data from MongoDB
2222 :titlesonly:
2323 :maxdepth: 1
2424
25- /read/specify-a-query
26- /read/retrieve
27- /read/project
28- /read/specify-documents-to-return
29- /read/count
30- /read/distinct
31- /read/cursors
32- /read/change-streams
25+ Query < /read/specify-a-query>
26+ Retrieve Data < /read/retrieve>
27+ Specify Fields to Return < /read/project>
28+ Specify Documents to Return < /read/specify-documents-to-return>
29+ Count Documents < /read/count>
30+ Distinct Field Values < /read/distinct>
31+ Access Data from a Cursor < /read/cursors>
32+ Monitor Data Changes < /read/change-streams>
3333
3434Overview
3535--------
Original file line number Diff line number Diff line change @@ -22,9 +22,9 @@ Secure Your Data
2222 :titlesonly:
2323 :maxdepth: 1
2424
25- /security/authentication
26- /security/enterprise-authentication
27- /security/in-use-encryption
25+ Authentication < /security/authentication>
26+ Enterprise Authentication < /security/enterprise-authentication>
27+ In-Use Encryption < /security/in-use-encryption>
2828
2929Overview
3030--------
You can’t perform that action at this time.
0 commit comments