You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[2022-09-05 22:37:21,086] ERROR in app: Exception on request POST /graphql
Traceback (most recent call last):
File "/Users/user/code/python-gql/.venv/lib/python3.9/site-packages/quart/app.py", line 1629, in handle_request
return await self.full_dispatch_request(request_context)
File "/Users/user/code/python-gql/.venv/lib/python3.9/site-packages/quart/app.py", line 1654, in full_dispatch_request
result = await self.handle_user_exception(error)
File "/Users/user/code/python-gql/.venv/lib/python3.9/site-packages/quart/app.py", line 1099, in handle_user_exception
raise error
File "/Users/user/code/python-gql/.venv/lib/python3.9/site-packages/quart/app.py", line 1652, in full_dispatch_request
result = await self.dispatch_request(request_context)
File "/Users/user/code/python-gql/.venv/lib/python3.9/site-packages/quart/app.py", line 1697, in dispatch_request
return await self.ensure_async(handler)(**request_.view_args)
File "/Users/user/code/python-gql/.venv/lib/python3.9/site-packages/quart/views.py", line 62, in view
return await current_app.ensure_async(self.dispatch_request)(**kwargs)
File "/Users/user/code/python-gql/.venv/lib/python3.9/site-packages/graphql_server/quart/graphqlview.py", line 91, in dispatch_request
data = await self.parse_body()
File "/Users/user/code/python-gql/.venv/lib/python3.9/site-packages/graphql_server/quart/graphqlview.py", line 173, in parse_body
refined_data = await request.get_data(raw=False)
TypeError: get_data() got an unexpected keyword argument 'raw'
hello. I noticed that when using GraphQLView as follows,
I get the following error:
According to https://pgjones.gitlab.io/quart/reference/source/quart.html,
get_data
's signature is as follows:The text was updated successfully, but these errors were encountered: