(self, field)
| 43 | return self.get_search_queryset().boost(term, boost) |
| 44 | |
| 45 | def facet(self, field): |
| 46 | return self.get_search_queryset().facet(field) |
| 47 | |
| 48 | def within(self, field, point_1, point_2): |
| 49 | return self.get_search_queryset().within(field, point_1, point_2) |
nothing calls this directly
no test coverage detected