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

wave: run graphql asynchronously on flask server #119

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 17 additions & 2 deletions graphql_server/flask/graphqlview.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import asyncio
import copy
from collections.abc import MutableMapping
from functools import partial
from typing import List

from flask import Response, render_template_string, request
from flask.views import View
from graphql import specified_rules
from graphql import pyutils, specified_rules
from graphql.error import GraphQLError
from graphql.type.schema import GraphQLSchema

Expand Down Expand Up @@ -115,9 +116,23 @@ def dispatch_request(self):
middleware=self.get_middleware(),
validation_rules=self.get_validation_rules(),
execution_context_class=self.get_execution_context_class(),
run_sync=False,
)

# This is (almost) copied from graphql_server.aiohttp.GraphQLView
# It is a bit weird as it originally calls await in a loop which
# a bit breaks the gains from doing operations asynchronously...
# But maybe it is required for correctness to execute those
# operations like that, so leaving it.
exec_res = [
ex
if ex is None or not pyutils.is_awaitable(ex)
else asyncio.run(ex)
for ex in execution_results
]

result, status_code = encode_execution_results(
execution_results,
exec_res,
is_batch=isinstance(data, list),
format_error=self.format_error,
encode=partial(self.encode, pretty=pretty), # noqa
Expand Down