File tree Expand file tree Collapse file tree 3 files changed +36
-1
lines changed Expand file tree Collapse file tree 3 files changed +36
-1
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ sharedinclude_root = "https://raw.githubusercontent.com/10gen/docs-shared/main/"
17
17
[constants ]
18
18
driver = " java"
19
19
driver-long = " MongoDB Java Driver"
20
+ driver-short = " Java Driver"
20
21
version = " 4.8"
21
22
full-version = " {+version+}.2"
22
23
mdb-server = " MongoDB server"
Original file line number Diff line number Diff line change 2
2
Aggregation
3
3
===========
4
4
5
- .. default-domain:: mongodb
5
+ .. toctree::
6
+
7
+ /fundamentals/aggregation/aggregation-expression-operations
6
8
7
9
.. contents:: On this page
8
10
:local:
Original file line number Diff line number Diff line change
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
+ ----------------
You can’t perform that action at this time.
0 commit comments