@@ -48,7 +48,7 @@ to perform exact matches on fields indexed in a MongoDB Atlas Search index.
48
48
49
49
The ``path `` argument can be either the name of a field (as a string), or a
50
50
:class: `~django.db.models.F ` instance. The ``value `` argument
51
- must be a string or a :class: `~django.db.models.expressions. Value `.
51
+ must be a string or a :class: `~django.db.models.Value `.
52
52
53
53
``SearchEquals `` objects can be reused and combined with other search
54
54
expressions.
@@ -77,7 +77,7 @@ MongoDB Atlas Search index.
77
77
The ``path `` argument specifies the field to search and can be a string or a
78
78
:class: `~django.db.models.F `. The ``query `` is the user input
79
79
string to autocomplete and can be passed as a string or a
80
- :class: `~django.db.models.expressions. Value `.
80
+ :class: `~django.db.models.Value `.
81
81
82
82
Optional arguments:
83
83
@@ -141,7 +141,7 @@ documents whose field contains a value from the provided array.
141
141
142
142
The ``path `` argument can be the name of a field (as a string) or a
143
143
:class: `~django.db.models.F `. The ``value `` must be a list
144
- of values or a :class: `~django.db.models.expressions. Value `.
144
+ of values or a :class: `~django.db.models.Value `.
145
145
146
146
An optional ``score `` argument can be used to customize relevance scoring.
147
147
@@ -651,7 +651,7 @@ expression.
651
651
This expression can be passed to most Atlas Search operators through the
652
652
``score `` argument to customize how MongoDB calculates and applies scoring.
653
653
654
- It directly maps to the :doc: `score option <atlas:atlas-search/scoring/ >` of
654
+ It directly maps to the :doc: `score option <atlas:atlas-search/scoring >` of
655
655
the relevant Atlas Search operator.
656
656
657
657
.. code-block :: pycon
0 commit comments