Skip to content

Commit 400fa99

Browse files
authored
DOCSP-27390 - Agg Expression Overview (#318)
* add new file * JS MK feedback
1 parent 86e1670 commit 400fa99

File tree

3 files changed

+36
-1
lines changed

3 files changed

+36
-1
lines changed

snooty.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ sharedinclude_root = "https://raw.githubusercontent.com/10gen/docs-shared/main/"
1717
[constants]
1818
driver = "java"
1919
driver-long = "MongoDB Java Driver"
20+
driver-short = "Java Driver"
2021
version = "4.8"
2122
full-version = "{+version+}.2"
2223
mdb-server = "MongoDB server"

source/fundamentals/aggregation.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
Aggregation
33
===========
44

5-
.. default-domain:: mongodb
5+
.. toctree::
6+
7+
/fundamentals/aggregation/aggregation-expression-operations
68

79
.. contents:: On this page
810
:local:
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
=================================
2+
Aggregation Expression Operations
3+
=================================
4+
5+
.. contents:: On this page
6+
:local:
7+
:backlinks: none
8+
:depth: 2
9+
:class: singlecol
10+
11+
Overview
12+
--------
13+
14+
In this guide, you can learn how to use the {+driver-long+} to construct expressions
15+
for use in the aggregation pipeline.
16+
With the {+driver-short+}, you can perform expression operations with
17+
discoverable, typesafe Java methods rather than BSON documents.
18+
Because these methods follow the fluent interface pattern, you can chain
19+
aggregation operations together to create code that is both more compact and
20+
more naturally readable.
21+
22+
.. tip::
23+
24+
For more information about aggregation expressions that use the Query API, see the
25+
:manual:`Aggregation Pipeline Operators </reference/operator/aggregation/>`
26+
page in the Server manual.
27+
28+
Operations
29+
----------
30+
31+
More Information
32+
----------------

0 commit comments

Comments
 (0)