Adds GraphQL support to your Flask application.
Just use the GraphQLView
view from flask_graphql
from flask_graphql import GraphQLView
app.add_url_rule('/graphql', view_func=GraphQLView.as_view('graphql', schema=schema, graphiql=True))
This will add /graphql
and /graphiql
endpoints to your app.
schema
: TheGraphQLSchema
object that you want the view to execute when it gets a valid request.context
: A value to pass as thecontext
to thegraphql()
function.root_value
: Theroot_value
you want to provide toexecutor.execute
.pretty
: Whether or not you want the response to be pretty printed JSON.executor
: TheExecutor
that you want to use to execute queries.graphiql
: IfTrue
, may present [GraphiQL][https://github.com/graphql/graphiql] when loaded directly from a browser (a useful tool for debugging and exploration).
You can also subclass GraphQLView
and overwrite
get_root_value(self, request)
to have a dynamic root value per
request.
class UserRootValue(GraphQLView):
def get_root_value(self, request):
return request.user