33========
44
55.. default-domain:: mongodb
6-
6+
77.. toctree::
88
99 /fundamentals/builders/aggregates
@@ -19,16 +19,16 @@ Builders
1919 :depth: 2
2020 :class: singlecol
2121
22- This section includes guides on how to use each of the available
23- builders, and demonstrates the utility the Java driver builder classes
24- provide.
25-
2622Overview
2723--------
2824
25+ This section includes guides on how to use each of the available
26+ builders, and demonstrates the utility the Java driver builder classes
27+ provide.
28+
2929The Java driver provides classes to simplify the process for developers
3030to use CRUD operations and the Aggregation API. The static utility methods allow you
31- to build a query more efficiently.
31+ to build a query more efficiently.
3232
3333Why Use Builders?
3434-----------------
@@ -47,15 +47,15 @@ With the builder classes, you write operators as methods. The IDE
4747instantly underlines and gives you a red bar on the right indicating
4848something is wrong. While developing, the IDE also shows you with the
4949methods you can use. It automatically completes your code with
50- placeholder parameters once you select which method you want to use.
50+ placeholder parameters once you select which method you want to use.
5151
5252Scenario
5353--------
5454
5555Imagine we want to send a marketing email to all users in our ``users``
5656collection with the following criteria:
5757
58- - Users that identify as "female" gender
58+ - Users that identify as "female" gender
5959- Users that are older than "29"
6060
6161We only want their email address, so we'll ensure our query doesn't
@@ -99,3 +99,4 @@ Available Builders
9999- :ref:`Updates <updates-builders>` for building updates.
100100- :ref:`Aggregates <aggregates-builders>` for building aggregation pipelines.
101101- :ref:`Indexes <indexes-builders>` for creating index keys.
102+
0 commit comments