gql
gql copied to clipboard
A GraphQL client in Python
Could we please add an example that shows how to use `PhoenixChannelWebsocketsTransport` . I'm trying to connect to the websocket server implemented using Phoenix Channel and unable to do so...
Fix #154 Hello, not sure if there is still interest in supporting an httpx transport out of the box. I would be happy to maintain a separate package if that...
Hello! I'm building my query dynamically. I want to select all the nested sub fields _(children, grand children etc)_. Is there a way to accomplish this with `gql`? I'm not...
[HTTPX](https://www.python-httpx.org) is a HTTP library for Python which supports both sync and async requests. A big advantage of HTTPX is that it supports Trio (as well as asyncio), something not...
* Following [graphql-core update to 3.3.0a1](https://github.com/graphql-python/graphql-core/releases/tag/v3.3.0a1) * Adding spaces in tests following graphql-core update * Dropping support for Python 3.6
**Describe the bug** - When creating a query with `gql.gql()`, the query string is checked for invalid arguments, and raises an exception if any are found. (**expected behavior**) - When...
Apollo recently introduced [HTTP callback protocol for GraphQL subscriptions](https://www.apollographql.com/docs/router/executing-operations/subscription-callback-protocol/) which utilizes the HTTP Multipart protocol instead of websockets. Apollo Client [supports it out of the box](https://www.apollographql.com/docs/react/data/subscriptions#http) and provides adapters for...
python-websockets doesn't support proxies and has no intention to in the near future. We should allow for usage of a websockets-client transport to allow users to ability to run through...
The file upload functionality of gql allows the user to provide as a file variable either: - an opened file - a StreamReader instance (for streaming from a download) -...
Batching
Hi there, I've been working with this library for a while, and I'm using it to query an endpoint that is capable of receive multiple queries at once. The API...