graphql-redis-subscriptions
graphql-redis-subscriptions copied to clipboard
A graphql subscriptions implementation using redis and apollo's graphql-subscriptions
Is this package compatible with GraphQL v16? I see that it has a dev dependency on v15.
I'm working to improve the type safety of our RedisPubSub integration and have found a simple pattern that I believe may be useful to other people. ## Problem The distance...
We are using this library with Apollo Server for our backend, and we are migrating to Kubernetes out entire infra. So this is now the time we need to choose...
Per upstream change in `graphql-subscriptions` (https://github.com/apollographql/graphql-subscriptions/pull/232) it would make sense to propagate the fix to this library once released. Otherwise, an update to `graphql-subscriptions` will break type check on this...
Simplify pubsub subscription-id state by using maps and sets
Hi, I have setup the graphql server as instructed, and have redis server running in the background. For the front-end, I use React with Typescript, and init the connection when...
**Server code example**  **Client side code example**  **Issue**  **Dependecies** ` "apollo-server-express": "^3.5.0", "graphql": "^16.0.1", "graphql-redis-subscriptions": "^2.4.0", "graphql-subscriptions": "^2.0.0", "graphql-ws": "^5.5.5", "ioredis": "^4.28.0", `
This makes it possible to do something like: ```ts export enum SubscriptionsTopics { A, B, }; const redis = new IORedis(); export const graphqlPubsub = new RedisPubSub({ publisher: redis, subscriber:...
Hi, I have a situation in which there will be multiple instances of my graphql subscription server running. Data is coming over from a different data source let's say, Kafka....
I would like to use redis, and graphql-redis-subscriptions to track page viewers for an internal app. The details of that are probably a bit much for a Github Issue, so...