gql icon indicating copy to clipboard operation
gql copied to clipboard

A GraphQL client in Python

Results 21 gql issues
Sort by recently updated
recently updated
newest added

Currently gql will locally validate the GraphQL request to see if it correspond to the GraphQL schema if it is present. It does not validate variable values though. It's something...

type: feature

aiohttp has out of the box websocket support. So it should be easy to integrate in the transport.

type: feature

For the following query on https://countries.trevorblades.com/ ``` query GetCountries { countries { name } } ``` The snippet to generate this dynamically using gql is: ``` dsl_gql( GetCountries=DSLQuery( ds.Query.countries.select(ds.Country.name) )...

type: feature

This represents ongoing work addressing issues #418 and #451, adding AIOHTTP Websockets support with a new AIOHTTPWebsocketsTransport. We already have a working base model, and are working on full parity...

I've been composing queries with gql.dsl and need to use the `@include` directive in a query. Other than https://github.com/graphql-python/gql/issues/278 I don't see any reference to directives. Are directives supported with...

type: feature

I ran into below error, can anyone help look into this, thanks. Traceback (most recent call last): File "C:\Program Files\Python\lib\site-packages\aiohttp\connector.py", line 1025, in _wrap_create_connection return await self._loop.create_connection(*args, **kwargs) File "C:\Program...

type: question or discussion

…ment. client.execute_batch was showing "No overload for provided arguments" in Pylance for vscode. Had to provide argument for get_execution_result to suppress error. Update overloads to have default values to overcome...

Adding this issue as a reminder to remove duplicated code.

type: optimization

Hello, It seems the MIT license is missing from your package classifier, is it possible to add it ? Thanks

**Common problems** - TLS should be enabled by default. AIOHTTPTransport uses ssl=False by default - I was expecting library to fail when using self signed certificate on the server. **To...

type: bug