(self, field, point_1, point_2)
| 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) |
| 50 | |
| 51 | def dwithin(self, field, point, distance): |
| 52 | return self.get_search_queryset().dwithin(field, point, distance) |
nothing calls this directly
no test coverage detected