onyb / reobject

Python without ifs and buts - an ORM layer for Python objects, inspired by Django
Apache License 2.0
81 stars 8 forks source link

Support reverse ordering in values and values_list #1

Open onyb opened 7 years ago

onyb commented 7 years ago

This is supported: Foo.objects.filter().order_by('-foo')

whereas, this is not: Foo.objects.filter().values('email', 'foo').order_by('-foo')