We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7801c11 + 6cf0ace commit e1373dfCopy full SHA for e1373df
flask_graphql/graphqlview.py
@@ -129,7 +129,7 @@ def parse_body(self, request):
129
130
elif content_type == 'application/json':
131
try:
132
- request_json = json.loads(request.data.decode())
+ request_json = json.loads(request.data.decode('utf8'))
133
assert isinstance(request_json, dict)
134
return request_json
135
except:
0 commit comments