Hanusz Leszek
Hanusz Leszek
I know you don't have any subscriptions. It was used to test the apollo websockets transport for the client. Queries and mutations were working on the websockets endpoint, check [this...
But if you don't plan to bring back the websockets support back, no worries, I'll try to find another always-on backend for our websockets examples.
I just tested a local version of countries and the websockets endpoint is working, so it should be a configuration issue in the hosting environment. ```sh $ echo 'query {...
It works for me (gimp 2.8.22).
Let's say you have a class with a `do_stuff` method: ```python class MyClass: def __init__(self): pass def do_stuff(self): print("do stuff") ``` If you want to implement conditional backoff to this...
Yes please, it is sometimes very confusing when you encounter some module, class or method which is not found above in the code.
> 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`? Not out...
Also you could take a look at the [get_introspection_query_ast method](https://github.com/graphql-python/gql/blob/1a1a2ee5e9b823a615a420285fdfb3fb4dbcfabf/gql/utilities/get_introspection_query_ast.py#L8) which uses the DSL module to create an introspection query with the number of nested levels of your choice (in...
There are some examples [in the tests](https://github.com/graphql-python/gql/blob/master/tests/test_phoenix_channel_query.py#L52). What is your backend, it it public ?
> 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 is...