We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
ariadne.wsgi.GraphQL.get_request_data
dict
get_request_data calls extract_data_from_json_request that returns Any which is then casted to dict without any verification of it's type.
get_request_data
extract_data_from_json_request
Any
This verification still happens in graphql_sync so we are covered, but currently type is lying to developers working with the code.
graphql_sync
We should change it's return type to Any and update the docs to reflect this.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
get_request_data
callsextract_data_from_json_request
that returnsAny
which is then casted todict
without any verification of it's type.This verification still happens in
graphql_sync
so we are covered, but currently type is lying to developers working with the code.We should change it's return type to
Any
and update the docs to reflect this.The text was updated successfully, but these errors were encountered: