devind-team / graphene-django-filter

Advanced filters for Graphene
MIT License
19 stars 7 forks source link

Is there a `sort` or `orderBy` option? #72

Open thomas-arun opened 1 year ago

thomas-arun commented 1 year ago

I was wondering if this library has a sort or orderBy feature which can be used on certain fields. I was unable to find any in the documentation and I was unable to make the graphene django orderBy work too.

rapsealk commented 1 year ago

I have the same requirements with you. Do you have a plan to implement this by yourself?

thomas-arun commented 1 year ago

I actually did implement it.

I wrote a new class which inherits from AdvancedDjangoFilterConnectionField, accepts a parameter orderBy and overrides the resolve_queryset method

rapsealk commented 1 year ago

@thomas-arun Thanks for sharing!