Open
Description
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.
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.