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