We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For example
class UserFilter(FilterSet): is_cool = graphene.Boolean() @classmethod async def is_cool_filter(cls, info, query, value): returned_list= await async_func() if value: filter_ = query.id.in_(returned_list) else: filter_ = query.id.in_(None) return query, filter_
The text was updated successfully, but these errors were encountered:
This cannot be done now. But it will be a nice improvement! 👍
Now I don't have time for this task. Maybe someone can do PR...
Sorry, something went wrong.
No branches or pull requests
For example
The text was updated successfully, but these errors were encountered: