I am writing a query which involves inequality filter.
query = my_model.all().filter('my_date <', given_date)
I want to sort the results by some other property. The problem is according to documentation i have to order the results by the inequality property first.
Does anyone know how can i sort my results by some other property.