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
2020construct :ref:`BSON <bson>` objects. To learn more, see our :doc:`guide
2121on builders </fundamentals/builders/>`.
2222
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.
2526
2627You can use filters in the following places:
2728
@@ -32,9 +33,9 @@ You can use filters in the following places:
3233
3334Some examples of results from queries with filters are:
3435
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".
3839
3940This guide shows you how to use builders with examples of the following
4041types of operators:
You can’t perform that action at this time.
0 commit comments