Set the query to only return ids and not the document content.
(self)
| 265 | return self |
| 266 | |
| 267 | def no_content(self) -> "Query": |
| 268 | """Set the query to only return ids and not the document content.""" |
| 269 | self._no_content = True |
| 270 | return self |
| 271 | |
| 272 | def no_stopwords(self) -> "Query": |
| 273 | """ |
no outgoing calls