Returns all results for the query.
(self)
| 317 | |
| 318 | # Methods that return a SearchQuerySet. |
| 319 | def all(self): # noqa A003 |
| 320 | """Returns all results for the query.""" |
| 321 | return self._clone() |
| 322 | |
| 323 | def none(self): |
| 324 | """Returns an empty result list for the query.""" |