flask-graphql
flask-graphql copied to clipboard
Adds GraphQL support to your Flask application.
I am trying to figure out the best way to authenticate a request before my schema executes the query/mutation. I was thinking I could use the @app.resolver('url') tag and create...
Hi and thanks for the geat job. With 1.4.1 version I used to pass my DB session via the `context` option of the GraphQLView as still mentioned in the README...
I'm working on an [example repo](https://github.com/savovs/flask-graphene-hello) and was wondering, what would be the simplest way to implement that? This is what I tried without GraphQL: ```python @app.route('/upload', methods=['POST']) def uploadFile():...
Awesome project you got going here, thanks for keeping this going. I've been using the batch option to allow for batch-GraphQL requests from ApolloClient, but it doesn't seem like there...
jsdelivr.net has updated their url scheme. The old style only has graphiql through version 0.10.x, but the new style supports through the latest (0.11.10 as of today).
Adds pre-commit and runs it on all the current files. I skipped a few validations so I'm not making too many big changes and also set the max-line-length to 120:...
Hi there! Beginner at graphql, I'm slowly discovering the power or graphql and I was wondering how do you add doc to your mutations etc? I'm using PynamoDB and I...
link: https://github.com/graphql-python/graphene/blob/master/UPGRADE-v2.0.md#simpler-resolvers The new resolver has changed, Now, resolver args are passed as keyword arguments to the function, and context argument disappeared in favor of info.context.
Hello guys, I playing with GraphQL and I received this exception AttributeError str' object has no attribute 'decode' with python 3. I'd like to propose distinction between 'str' and 'unicode'...
Hi ! It would be nice to be able to pass arbitrary variables to the graphiql template. I didn't found how to do it and looking at how `render_graphiql.py` is...