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

Fix for parse body when sending files with multipart #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
6 changes: 5 additions & 1 deletion aiohttp_graphql/graphqlview.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from collections import Mapping
from functools import partial
import json

from aiohttp import web
from promise import Promise
Expand Down Expand Up @@ -84,10 +85,13 @@ async def parse_body(self, request):
'application/x-www-form-urlencoded',
'multipart/form-data',
):
data = dict(await request.post())
if not data.get("query", None):
return json.loads(data['operations'])
# TODO: seems like a multidict would be more appropriate
# than casting it and de-duping variables. Alas, it's what
# graphql-python wants.
return dict(await request.post())
return data

return {}

Expand Down