Orders the search result by a field.
(self, field)
| 835 | self.query_filter.end_subtree() |
| 836 | |
| 837 | def add_order_by(self, field): |
| 838 | """Orders the search result by a field.""" |
| 839 | self.order_by.append(field) |
| 840 | |
| 841 | def clear_order_by(self): |
| 842 | """ |
no outgoing calls