@@ -26,7 +26,7 @@ query the database by using MongoDB's aggregation pipeline syntax
2626rather than Django methods.
2727
2828The Django QuerySet API provides a ``QuerySet.raw()`` method, which allows
29- you to perform raw SQL queries on relational databases. {+django-odm+}
29+ you to perform raw SQL queries on relational databases. However, {+django-odm+}
3030does not support the ``raw()`` method. Instead, the ODM provides the
3131``QuerySet.raw_aggregate()`` method, which you can use to send instructions
3232to the database in pipeline stages.
@@ -165,7 +165,7 @@ functionality, such as matching text phrases, scoring results for
165165relevance, and highlighting matches.
166166
167167To specify an Atlas Search query, create an Atlas Search index
168- that covers the fields you want to query. Then, specify the ``$search``
168+ that covers the fields you want to query. Then, pass a ``$search``
169169or ``$searchMeta`` stage in an aggregation pipeline parameter to
170170the ``raw_aggregate()`` method.
171171
@@ -279,7 +279,7 @@ a geographic location on the surface of the Earth or on a
279279Euclidean plane.
280280
281281To run a geospatial query, create a ``2d`` or ``2dsphere`` index on fields
282- containing geospatial data. Then, specify one of the following
282+ containing geospatial data. Then, pass one of the following
283283query operators in an aggregation pipeline parameter to
284284the ``raw_aggregate()`` method:
285285
0 commit comments