(self, term, boost)
| 40 | return self.get_search_queryset().highlight() |
| 41 | |
| 42 | def boost(self, term, boost): |
| 43 | return self.get_search_queryset().boost(term, boost) |
| 44 | |
| 45 | def facet(self, field): |
| 46 | return self.get_search_queryset().facet(field) |
nothing calls this directly
no test coverage detected