Closed tasiotas closed 1 year ago
Hi,
After upgrading to v3, filters are not showing up in GraphiQL. They do if I have order specified.
filters
order
with order
@gql.django.type(Article, filters=ArticleFilter, order=ArticleOrder) class ArticleType(gql.relay.Node): slug: gql.auto title: gql.auto ...
without order
@gql.django.type(Article, filters=ArticleFilter) class ArticleType(gql.relay.Node): slug: gql.auto title: gql.auto ...
Hey @tasiotas . I think I found the issue. It will be fixed in the next release I'm doing right now
Hi,
After upgrading to v3,
filters
are not showing up in GraphiQL. They do if I haveorder
specified.with
order
without
order