Replies: 1 comment 9 replies
-
Hey hey! The thing about Check out the About the statement of async iterator approach being incompatible - you can convert any pull/push event based emitter to async iterators (which is what Furthermore, specifically to AWS, you can check @andyrichardson's Heads up, the subprotocol ping/pongs necessary for andyrichardson/subscriptionless#3 is resolved as of |
Beta Was this translation helpful? Give feedback.
-
I've got an app that uses architect to manage http and websocket functions. We have a graphql api implemented with
apollo-server-lambda
and have custom websocket code. Our current real time system uses dynamodb to track subscriptions and sns to broadcast events. It works for what we need. However, I'd like to get us going in a direction where we use graphql subscriptions as it would simplify our codebase quite a bit.Since my setup decomposes the traditional graphql subscription setup into parts backed by external services, and doesn't keep a single server process alive outside the confines of a request, the async iterator approach seems incompatible. Are there any similar setups that I could learn from?
Beta Was this translation helpful? Give feedback.
All reactions