GraphQL requests that contain unicode characters fails with the error message 'POST body sent invalid JSON.' I was able to fix it by adding utf-8 parameter to decode method . graphqlview.py L132: `request_json = json.loads(request.data.decode('utf-8'))`