Efficiently populates the objects in the search results.
(self)
| 473 | return self.filter(content=Raw(query_string, **kwargs)) |
| 474 | |
| 475 | def load_all(self): |
| 476 | """Efficiently populates the objects in the search results.""" |
| 477 | clone = self._clone() |
| 478 | clone._load_all = True |
| 479 | return clone |
| 480 | |
| 481 | def auto_query(self, query_string, fieldname="content"): |
| 482 | """ |