flask-graphql icon indicating copy to clipboard operation
flask-graphql copied to clipboard

Adds GraphQL support to your Flask application.

Results 44 flask-graphql issues
Sort by recently updated
recently updated
newest added

A 'headers' bar/tab can be added in the interface to support authentication tokens and other header functionality. Currently, other external third-party clients like Insomnia have to be downloaded.

Attempting a `pip install flask_graphql` ends up with a dependency conflict. Logs ```bash ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This...

Updated the values on my machine and tested it out - things all seemed to be running fine.

Is there a way to enable the GraphiQL explorer for a Python (`flask-graphql`) backend?

I have `Flask-GraphQL==2.0.1` installed and inside Chrome it is requiring dependencies like > http://cdn.jsdelivr.net/npm/[email protected]/graphiql.min.js note: currently the latest version in jsdelivr is 1.0.6 however the github readme says > graphiql_version:...

Hi there, I'm using flask-graphql in a project and got into a question/issue I don't have many clues. I'm using middlewares; this is the minimum example: ``` from flask import...

I want to access query/mutation names from views so I can add the name to the logging system. How can I access it?

This would have saved me the time to open `setup.py` just to look for the exact name of the package. The lowercaseness in my patch is deliberate. Thanks for this...

With Django and Graphene users can do the following to exempt the graphql endpoint from CSRF authentication. ``` urlpatterns = [ path("admin/", admin.site.urls), path("graphql", csrf_exempt(GraphQLView.as_view(graphiql=True, schema=schema))), ] ``` How can...