graphql-ws
graphql-ws copied to clipboard
GraphQL websockets
Hi @SmileyChris I am wondering if you are gonna create a pre-release of the project to support graphene 3, and when would that be ? Best
* GraphQL AioWS version: (not using AioWS, only django-channels) * Python version: 3.8.2 * Operating System: MacOSX ### Description I am trying to get clients to subscribe to my graphql...
Bumps [django](https://github.com/django/django) from 2.2.24 to 2.2.28. Commits 5c33000 [2.2.x] Bumped version for 2.2.28 release. 29a6c98 [2.2.x] Fixed CVE-2022-28347 -- Protected QuerySet.explain(**options) against... 2c09e68 [2.2.x] Fixed CVE-2022-28346 -- Protected QuerySet.annotate(), aggregate(),...
Fixes #58 #59 and #60
I have forked graphql-ws-next ([fork](https://github.com/callumforrester/graphql-ws-next)) and made changes to make it compatible with graphql-core v3. Would there be any interest in integrating these chagnes into graphql-ws or are the two...
* graphql-ws version : 0.4.4 * GraphQL-core version : 2.3.2 * graphene-django version :2.15.0 * Python version: Python 3.8.9 * django version : 3.2.9 GraphQL-ws seems to work fine for...
Document supported Python versions for PyPi/Pip & add Conda instructions.
simple example: ```python from graphql_ws.aiohttp import AiohttpSubscriptionServer from .schema import schema subscription_server = AiohttpSubscriptionServer(schema) async def subscriptions(request): ws = web.WebSocketResponse(protocols=('graphql-ws',)) await ws.prepare(request) # payload = request.get('payload') ??? await subscription_server.handle(ws, request_context=payload)...
Ran into an issue where this project, including the example would not work. Came across: https://github.com/priyankark/PhonePi_SampleServer/issues/14 Which suggested to downgrade flask, did so and it worked.