reverse_ordering()
Returns self
with any modifications required to reverse the sort order within an order_by
call. As an example, an expression implementing NULLS LAST
would change its value to be NULLS FIRST
. Modifications are only required for expressions that implement sort order like OrderBy
. This method is called when reverse()
is called on a queryset.
Please login to continue.