Skip to content
New issue

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

I use middleware for that right now #215

Open
amansingh0912 opened this issue Mar 8, 2024 · 1 comment
Open

I use middleware for that right now #215

amansingh0912 opened this issue Mar 8, 2024 · 1 comment

Comments

@amansingh0912
Copy link

amansingh0912 commented Mar 8, 2024

          I use middleware for that right now
class HideIntrospectMiddleware:
    """
    This middleware should use for production mode. This class hide the
    introspection.
    """
    def resolve(self, next, root, info, **args):
        if info.field_name == '__schema':
            return None
        return next(root, info, **args)

Originally posted by @Arfey in a Graphene issue, but it gives an error "Cannot return null for non-nullable field Query.__schema."

@Cito
Copy link
Member

Cito commented Mar 8, 2024

Can you please change the title and description to make this an actually relevant issue. Is this a request, bug report, or suggestion?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants