Skip to content

Commit 3121968

Browse files
DOCSP-19062 time series (#91)
* added time series page
1 parent 1988a05 commit 3121968

29 files changed

+233
-23
lines changed

snooty.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ intersphinx = [
1313
]
1414

1515
[constants]
16+
driver-long = "MongoDB Go Driver"
1617
docs-branch = "master" # always set this to the docs branch (i.e. master, 1.7, 1.8, etc.)
1718
version = "v1.8.4" # always set this to the driver branch (i.e. v1.7.0, v1.8.0, etc.)
1819
example = "https://raw.githubusercontent.com/mongodb/docs-golang/{+docs-branch+}/source/includes/usage-examples/code-snippets"

source/compatibility.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ MongoDB Compatibility
55
~~~~~~~~~~~~~~~~~~~~~
66

77
The following compatibility table specifies the recommended version(s) of the
8-
MongoDB Go Driver for use with a specific version of MongoDB.
8+
{+driver-long+} for use with a specific version of MongoDB.
99

1010
The first column lists the driver version(s).
1111

source/fundamentals.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Fundamentals
1313
/fundamentals/auth
1414
/fundamentals/bson
1515
/fundamentals/crud
16+
/fundamentals/time-series
1617

1718
..
1819
/fundamentals/enterprise-auth

source/fundamentals/context.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Context
1313
Overview
1414
--------
1515

16-
The MongoDB Go Driver uses the `context package
16+
The {+driver-long+} uses the `context package
1717
<https://pkg.go.dev/context>`__ from Go's standard library to allow
1818
applications to signal timeouts and cancellations for any **blocking function**
1919
call. A blocking function relies on an external event, such as a network

source/fundamentals/crud.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ CRUD Operations
99

1010
/fundamentals/crud/read-operations
1111
/fundamentals/crud/write-operations
12-
/fundamentals/crud/query-document
1312
/fundamentals/crud/compound-operations
1413

1514
CRUD (Create, Read, Update, Delete) operations enable you to work with

source/fundamentals/crud/compound-operations.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ Additional Information
310310
For more information on performing the operations mentioned, see the
311311
following guides:
312312

313-
- :doc:`Specify a Query </fundamentals/crud/query-document>`
313+
- :ref:`query_document_golang`
314314
- :doc:`Retrieve Data </fundamentals/crud/read-operations/retrieve>`
315315
- :doc:`Delete a Document </fundamentals/crud/write-operations/delete>`
316316
- :doc:`Update or Replace a Document </fundamentals/crud/write-operations/change-a-document>`

source/fundamentals/crud/read-operations.txt

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

55
.. default-domain:: mongodb
66

7+
- :doc:`/fundamentals/crud/read-operations/query-document`
78
- :doc:`/fundamentals/crud/read-operations/count`
89
- :doc:`/fundamentals/crud/read-operations/retrieve`
910
- :doc:`/fundamentals/crud/read-operations/cursor`
@@ -20,6 +21,7 @@ Read Operations
2021
.. toctree::
2122
:caption: Read Operations
2223

24+
/fundamentals/crud/read-operations/query-document
2325
/fundamentals/crud/read-operations/count
2426
/fundamentals/crud/read-operations/retrieve
2527
/fundamentals/crud/read-operations/cursor

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ Additional Information
191191
For more information on the operations mentioned, see the following
192192
guides:
193193

194-
- :doc:`Specify a Query </fundamentals/crud/query-document>`
194+
- :ref:`query_document_golang`
195195
- :doc:`Skip Returned Results </fundamentals/crud/read-operations/skip>`
196196
- :doc:`Limit the Number of Returned Results </fundamentals/crud/read-operations/limit>`
197197

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ For a runnable example of retrieving distinct values, see the
105105
usage example.
106106

107107
For information about construting a query filter, see the
108-
:doc:`Specify a Query </fundamentals/crud/query-document>` guide.
108+
:ref:`query_document_golang` guide.
109109

110110
API Documentation
111111
~~~~~~~~~~~~~~~~~

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ Additional Information
146146
For more information about the operations mentioned, see the following
147147
guides:
148148

149-
- :doc:`Specify a Query </fundamentals/crud/query-document>`
149+
- :ref:`query_document_golang`
150150
- :doc:`Retrieve Data </fundamentals/crud/read-operations/retrieve>`
151151
- :doc:`Sort Results </fundamentals/crud/read-operations/sort>`
152152
- :doc:`Skip Returned Results </fundamentals/crud/read-operations/skip>`

0 commit comments

Comments
 (0)