boomdizz
boomdizz
Seeing these. Could someone provide an ETA for when support for the latest packages would be available? django-channels-graphql-ws 0.9.1 requires channels=3, but you have channels 4.0.0 which is incompatible. django-channels-graphql-ws...
Another dependency that likely needs to be updated: ``` File "/lib/python3.10/site-packages/channels_graphql_ws/__init__.py", line 29, in from .client import GraphqlWsClient, GraphqlWsResponseError File "/lib/python3.10/site-packages/channels_graphql_ws/client.py", line 30, in from .transport import GraphqlWsTransport File "/lib/python3.10/site-packages/channels_graphql_ws/transport.py",...
@luiskarlos I am doing the same thing, but getting an empty dict on the server (Django/graphene) side. Also in that last line you posted, it should be 'mutation: UPLOAD_FILES' rather...
Also adding that the above mutation is working from the Altair graphql client.
I was able to finally get it to work in the Angular/Apollo environment. I have it documented as the answer to my own question on [Stackoverflow](https://stackoverflow.com/questions/74734531/upload-file-with-graphql-mutation-failing/74792526#74792526)
Could you give a concrete example? Not clear from your question what you are wanting to do.
Adding some more detail: In my UserConnection resolver for 'aggregate_count_email_addrs', if I print the 'root' argument passed in: ``` def resolve_aggregate_count_email_addrs(self, info, **kwargs): logger.debug("UserConnection: root: %s" % info) return 5...
I looked through my code and instead of 'id__in' in the query it should be 'id_In' (single underscore): ``` query getApplesIn($id__in: [ID]) { apples(id_In: $id__in) { id colour } }...
Oh, ok. What does the schema show on the client side? Using tools like Postman etc.....