Skip to content

Commit 464faaf

Browse files
authored
DOCSP-19108 update aggregation-framework -> aggregation-pipeline-intro (#686) (#696)
* DOCSP-19108 update aggregation-framework -> aggregation-pipeline-intro * CR1 * CR 1.5
1 parent ee1ec27 commit 464faaf

File tree

7 files changed

+17
-19
lines changed

7 files changed

+17
-19
lines changed

source/aggregation.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ results. You can use aggregation operations to:
2121

2222
To perform aggregation operations, you can use:
2323

24-
- :ref:`Aggregation pipelines <aggregation-framework>`, which are the
24+
- :ref:`Aggregation pipelines <aggregation-pipeline-intro>`, which are the
2525
preferred method for performing aggregations.
2626

2727
- :ref:`Single purpose aggregation methods
@@ -32,7 +32,7 @@ To perform aggregation operations, you can use:
3232
deprecated starting in MongoDB 5.0. Instead, use an aggregation
3333
pipeline.
3434

35-
.. _aggregation-framework:
35+
.. _aggregation-pipeline-intro:
3636

3737
Aggregation Pipelines
3838
---------------------
@@ -76,7 +76,8 @@ aggregate documents from a single collection:
7676
specified field.
7777

7878
The single purpose aggregation methods are simple but lack the
79-
capabilities of an :ref:`aggregation pipeline <aggregation-framework>`.
79+
capabilities of an :ref:`aggregation pipeline
80+
<aggregation-pipeline-intro>`.
8081

8182
.. _aggregation-map-reduce:
8283

source/core/sharded-cluster-query-router.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -384,8 +384,7 @@ Using Aggregation Pipelines with Clusters
384384
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
385385

386386
For more information on how sharding works with :ref:`aggregations
387-
<aggregation-framework>`, read the sharding chapter in the `Practical
387+
<aggregation-pipeline>`, read the sharding chapter in the `Practical
388388
MongoDB Aggregations
389389
<https://www.practical-mongodb-aggregations.com/guides/sharding.html>`__
390390
e-book.
391-

source/core/timeseries-collections.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ Run Aggregations on a Time Series Collection
242242
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
243243

244244
For additional query functionality, use an :ref:`aggregation pipeline
245-
<aggregation-framework>` such as:
245+
<aggregation-pipeline>` such as:
246246

247247
.. code-block:: javascript
248248

source/reference/operator/aggregation/function.txt

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -134,10 +134,10 @@ Alternative to ``$where``
134134
The query operator :query:`$where` can also be used to specify
135135
JavaScript expression. However:
136136

137-
- Starting in MongoDB 3.6, the :query:`$expr` operator allows the use
138-
of :ref:`aggregation expressions <aggregation-framework>` within the
137+
- The :query:`$expr` operator allows the use of
138+
:ref:`aggregation expressions <aggregation-expressions>` within the
139139
query language.
140-
140+
141141
- Starting in MongoDB 4.4, the :expression:`$function` and
142142
:group:`$accumulator` allows users to define custom aggregation
143143
expressions in JavaScript if the provided :doc:`pipeline operators
@@ -230,9 +230,8 @@ Example 2: Alternative to ``$where``
230230

231231
.. note:: Aggregation Alternatives Preferred over ``$where``
232232

233-
234-
Starting in MongoDB 3.6, the :query:`$expr` operator allows the use
235-
of :ref:`aggregation expressions <aggregation-framework>` within the
233+
The :query:`$expr` operator allows the use of
234+
:ref:`aggregation expressions <aggregation-expressions>` within the
236235
query language. And, starting in MongoDB 4.4, the
237236
:expression:`$function` and :group:`$accumulator` allows users to
238237
define custom aggregation expressions in JavaScript if the provided

source/reference/operator/query/where.txt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,9 @@ Definition
4040

4141
.. note:: Aggregation Alternatives Preferred
4242

43-
44-
Starting in MongoDB 3.6, the :query:`$expr` operator allows the use
45-
of :ref:`aggregation expressions <aggregation-framework>` within the
46-
query language. And, starting in MongoDB 4.4, the
43+
The :query:`$expr` operator allows the use of
44+
:ref:`aggregation expressions <aggregation-expressions>` within
45+
the query language. And, starting in MongoDB 4.4, the
4746
:expression:`$function` and :group:`$accumulator` allows users to
4847
define custom aggregation expressions in JavaScript if the provided
4948
:doc:`pipeline operators </reference/operator/aggregation>` cannot

source/sharding.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -396,8 +396,8 @@ Practical MongoDB Aggregations E-Book
396396
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
397397

398398
For more information on how sharding works with
399-
:ref:`aggregations <aggregation-framework>`, read the sharding chapter
400-
in the `Practical MongoDB Aggregations
399+
:doc:`aggregations </aggregation>`, read the sharding
400+
chapter in the `Practical MongoDB Aggregations
401401
<https://www.practical-mongodb-aggregations.com/guides/sharding.html>`__
402402
e-book.
403403

source/tutorial/getting-started.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ examples in the shell above.
265265
You can use aggregation to group values from multiple documents
266266
together and return a single result. Aggregation in MongoDB
267267
is performed with an :ref:`aggregation pipeline
268-
<aggregation-framework>`.
268+
<aggregation-pipeline>`.
269269

270270
While :method:`~db.collection.find()` operations are useful for
271271
data retrieval, the aggregation pipeline allows you to manipulate

0 commit comments

Comments
 (0)