Open
Description
Related to #77.
Currently the execute()
method from graphql-core provides several keyword arguments to be passed on, which aren't included at all on such GraphQLView class methods. These can be passed using the **kwargs
syntax but should be great to infer from execute()
the available options.
So far this is being discussed at PEP-0612 and the tracking issue as this use case was discussed at this typing repository issue.
The only workaround is to manually specify the same types in order to provide each integration with the same capabilities from graphql-core out of the box.
cc @Cito