From a16bf70377cd0314a6b4c1b8045c8edf1ffee8fe Mon Sep 17 00:00:00 2001 From: nickldp <135850974+nickldp@users.noreply.github.com> Date: Thu, 15 Jun 2023 10:53:26 -0400 Subject: [PATCH] Docsp 30082 v1.7 doc to ref (#272) * DOCSP-30082-v1.7-ref-with-geo * DOCSP-30082:v1.7-ref-no-geo * DOCSP-30082:v1.7-last-fix * DOCSP-30082:v1.7-last-fix --- source/fundamentals/collations.txt | 2 -- source/fundamentals/crud/read-operations/count.txt | 5 +---- source/fundamentals/crud/read-operations/query-document.txt | 4 +--- source/fundamentals/crud/read-operations/text.txt | 5 +---- .../crud/write-operations/change-a-document.txt | 6 ++---- 5 files changed, 5 insertions(+), 17 deletions(-) diff --git a/source/fundamentals/collations.txt b/source/fundamentals/collations.txt index 36cab414..d9fb4011 100644 --- a/source/fundamentals/collations.txt +++ b/source/fundamentals/collations.txt @@ -4,8 +4,6 @@ Collations ========== -.. default-domain:: mongodb - .. contents:: On this page :local: :backlinks: none diff --git a/source/fundamentals/crud/read-operations/count.txt b/source/fundamentals/crud/read-operations/count.txt index 03374e4b..7e23cfd3 100644 --- a/source/fundamentals/crud/read-operations/count.txt +++ b/source/fundamentals/crud/read-operations/count.txt @@ -4,8 +4,6 @@ Count Documents =============== -.. default-domain:: mongodb - .. contents:: On this page :local: :backlinks: none @@ -249,8 +247,7 @@ guides: - :ref:`golang-skip` - :ref:`golang-limit` - :ref:`golang-aggregation` - -.. - :doc:`Collations ` +- :ref:`golang-collations` API Documentation ~~~~~~~~~~~~~~~~~ diff --git a/source/fundamentals/crud/read-operations/query-document.txt b/source/fundamentals/crud/read-operations/query-document.txt index cfa40f22..a11ff9ec 100644 --- a/source/fundamentals/crud/read-operations/query-document.txt +++ b/source/fundamentals/crud/read-operations/query-document.txt @@ -4,8 +4,6 @@ Specify a Query =============== -.. default-domain:: mongodb - .. contents:: On this page :local: :backlinks: none @@ -444,7 +442,7 @@ Additional Information ---------------------- .. For information on specifying a geospatial query, see the guide on -.. :doc:`Geospatial Data `. +.. :ref:`Geospatial Data `. API Documentation ~~~~~~~~~~~~~~~~~ diff --git a/source/fundamentals/crud/read-operations/text.txt b/source/fundamentals/crud/read-operations/text.txt index 2e45513e..957cbdc0 100644 --- a/source/fundamentals/crud/read-operations/text.txt +++ b/source/fundamentals/crud/read-operations/text.txt @@ -4,8 +4,6 @@ Search Text =========== -.. default-domain:: mongodb - .. contents:: On this page :local: :backlinks: none @@ -387,8 +385,7 @@ guides: - :manual:`$text ` - :manual:`$meta ` - :ref:`golang-aggregation` - -.. - :doc:`Indexes ` +- :ref:`golang-indexes` API Documentation ~~~~~~~~~~~~~~~~~ diff --git a/source/fundamentals/crud/write-operations/change-a-document.txt b/source/fundamentals/crud/write-operations/change-a-document.txt index ea32a222..80b99c0d 100644 --- a/source/fundamentals/crud/write-operations/change-a-document.txt +++ b/source/fundamentals/crud/write-operations/change-a-document.txt @@ -4,8 +4,6 @@ Change a Document ================= -.. default-domain:: mongodb - .. contents:: On this page :local: :backlinks: none @@ -126,8 +124,8 @@ the method selects and updates the first matched document. If no documents match the query filter, the update operation makes no changes. -.. See our :doc:`upsert guide ` -.. to learn how to insert a new document if no documents match the query filter. +See our :ref:`upsert guide ` +to learn how to insert a new document if no documents match the query filter. Example ```````