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
For the purposes of writing tests for my graphql server, I'd like the ability to communicate directly with the WSGI App object, rather than have to set up a local web server and go through one of gql's transport layers in each test.
I know that gql already provides the ability to interface with a local GraphQLSchema, but this then bypasses the the WSGI layer, which is where the graphql framework (in my case, ariadne) builds an executable schema and associates types with resolvers.
Is it possible for a gql client to communicate with a WSGI/ASGI object?