From ba567aadb5cea96791051dd5798cf1a408020b11 Mon Sep 17 00:00:00 2001 From: Jocelyn Mendez Date: Thu, 28 Oct 2021 12:49:34 -0400 Subject: [PATCH 1/2] DOCS-14521 add note to see also Manage Indexes --- source/core/index-partial.txt | 4 ++++ source/tutorial/manage-indexes.txt | 2 ++ 2 files changed, 6 insertions(+) diff --git a/source/core/index-partial.txt b/source/core/index-partial.txt index eb3c8346160..adff0630747 100644 --- a/source/core/index-partial.txt +++ b/source/core/index-partial.txt @@ -281,3 +281,7 @@ greater than or equal to 21. db.users.insert( { username: "amanda" } ) db.users.insert( { username: "rajiv", age: null } ) +.. seealso:: + + - To learn how to manage indexes in `compass`, see :ref:`` + diff --git a/source/tutorial/manage-indexes.txt b/source/tutorial/manage-indexes.txt index 6ef4368f599..cc94dfe38ed 100644 --- a/source/tutorial/manage-indexes.txt +++ b/source/tutorial/manage-indexes.txt @@ -1,3 +1,5 @@ +.. _manage-indexes: + ============== Manage Indexes ============== From 1dba6fbf7b5112bcaade06d9c30c6506eaf37765 Mon Sep 17 00:00:00 2001 From: Jocelyn Mendez Date: Thu, 28 Oct 2021 13:00:14 -0400 Subject: [PATCH 2/2] DOCS-14521 add note to see also Manage Indexes --- source/core/index-partial.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/core/index-partial.txt b/source/core/index-partial.txt index adff0630747..92ce785413e 100644 --- a/source/core/index-partial.txt +++ b/source/core/index-partial.txt @@ -43,6 +43,10 @@ indexes only the documents with a ``rating`` field greater than 5. You can specify a ``partialFilterExpression`` option for all MongoDB :ref:`index types `. +.. seealso:: + + To learn how to manage indexes in |compass|, see :ref:``. + Behavior -------- @@ -281,7 +285,3 @@ greater than or equal to 21. db.users.insert( { username: "amanda" } ) db.users.insert( { username: "rajiv", age: null } ) -.. seealso:: - - - To learn how to manage indexes in `compass`, see :ref:`` -