Set the query to be verbatim, i.e., use no query expansion or stemming.
(self)
| 258 | return self |
| 259 | |
| 260 | def verbatim(self) -> "Query": |
| 261 | """Set the query to be verbatim, i.e., use no query expansion |
| 262 | or stemming. |
| 263 | """ |
| 264 | self._verbatim = True |
| 265 | return self |
| 266 | |
| 267 | def no_content(self) -> "Query": |
| 268 | """Set the query to only return ids and not the document content.""" |
no outgoing calls