File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
source/fundamentals/builders Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -20,8 +20,9 @@ Builders are classes provided by the MongoDB Kotlin driver that help you
20
20
construct :ref:`BSON <bson>` objects. To learn more, see our :doc:`guide
21
21
on builders </fundamentals/builders/>`.
22
22
23
- Filters are the operations MongoDB uses to limit your results to what
24
- you want to see.
23
+ Filters are operations used to limit the results of a query based on
24
+ specified conditions. Filters are a helpful tool to locate
25
+ information that matches search conditions in a collection.
25
26
26
27
You can use filters in the following places:
27
28
@@ -32,9 +33,9 @@ You can use filters in the following places:
32
33
33
34
Some examples of results from queries with filters are:
34
35
35
- - Items that cost $0 to $25
36
- - A hotel with amenities that include an indoor swimming pool and free parking
37
- - A food critic review that mentions "spicy"
36
+ - Items that cost more than $0 but less than $25.
37
+ - Foods that are both gluten-free and less than 500 calories.
38
+ - A food critic review that mentions "spicy".
38
39
39
40
This guide shows you how to use builders with examples of the following
40
41
types of operators:
You can’t perform that action at this time.
0 commit comments