Skip to content

Commit 3c05c11

Browse files
DOCSP-16392 sidebar toc (#176)
* added sidebar TOC
1 parent 948dd22 commit 3c05c11

File tree

16 files changed

+83
-20
lines changed

16 files changed

+83
-20
lines changed

source/fundamentals/authentication/enterprise-mechanisms.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
Enterprise Authentication Mechanisms
33
====================================
44

5+
.. contents:: On this page
6+
:local:
7+
:backlinks: none
8+
:depth: 1
9+
:class: singlecol
10+
511
In this guide, you can find sample code for connection to MongoDB with each
612
authentication mechanism available in the MongoDB Enterprise Edition:
713
``Kerberos (GSSAPI/SSPI)`` and ``LDAP (PLAIN)``.

source/fundamentals/connection.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
Connection Guide
33
================
44

5+
.. contents:: On this page
6+
:local:
7+
:backlinks: none
8+
:depth: 2
9+
:class: singlecol
10+
511
This guide shows you how to connect to a MongoDB instance or replica set
612
deployment using the Node.js driver.
713

source/fundamentals/crud/compound-operations.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ Compound Operations
44

55
.. default-domain:: mongodb
66

7+
.. contents:: On this page
8+
:local:
9+
:backlinks: none
10+
:depth: 1
11+
:class: singlecol
12+
713
Most database requests only need to read data out of a database or
814
write data into a database. However, client applications sometimes need
915
to read and write data in a single interaction with the database.

source/fundamentals/crud/query-document.txt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,14 @@ Specify a Query
44

55
.. default-domain:: mongodb
66

7+
.. contents:: On this page
8+
:local:
9+
:backlinks: none
10+
:depth: 1
11+
:class: singlecol
12+
713
Overview
8-
~~~~~~~~
14+
--------
915

1016
Most CRUD operations allow you to narrow the set of matched documents by
1117
specifying matching criteria in a **query document**. Query documents contain

source/fundamentals/crud/read-operations/cursor.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ Access Data From a Cursor
44

55
.. default-domain:: mongodb
66

7+
.. contents:: On this page
8+
:local:
9+
:backlinks: none
10+
:depth: 2
11+
:class: singlecol
12+
713
Read operations that return multiple documents do not immediately return
814
all values matching the query. Because a query can potentially match
915
very large sets of documents, these operations rely upon an

source/fundamentals/crud/read-operations/retrieve.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Retrieve Data
77
.. contents:: On this page
88
:local:
99
:backlinks: none
10-
:depth: 2
10+
:depth: 1
1111
:class: singlecol
1212

1313
Overview

source/fundamentals/crud/read-operations/text.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ Search Text
44

55
.. default-domain:: mongodb
66

7+
.. contents:: On this page
8+
:local:
9+
:backlinks: none
10+
:depth: 2
11+
:class: singlecol
12+
713
Overview
814
--------
915

source/fundamentals/crud/write-operations/change-a-document.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ Change a Document
44

55
.. default-domain:: mongodb
66

7+
.. contents:: On this page
8+
:local:
9+
:backlinks: none
10+
:depth: 1
11+
:class: singlecol
12+
713
Overview
814
--------
915

source/fundamentals/crud/write-operations/delete.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ Delete a Document
44

55
.. default-domain:: mongodb
66

7+
.. contents:: On this page
8+
:local:
9+
:backlinks: none
10+
:depth: 1
11+
:class: singlecol
12+
713
Overview
814
--------
915

source/fundamentals/crud/write-operations/embedded-arrays.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ Update Arrays in a Document
44

55
.. default-domain:: mongodb
66

7+
.. contents:: On this page
8+
:local:
9+
:backlinks: none
10+
:depth: 1
11+
:class: singlecol
12+
713
If you need to modify an array embedded within a document, you can use an
814
array update operator in your update method call. In this guide, we
915
explain and show examples on usage of these operators including:

0 commit comments

Comments
 (0)