graphql-redis-subscriptions icon indicating copy to clipboard operation
graphql-redis-subscriptions copied to clipboard

A graphql subscriptions implementation using redis and apollo's graphql-subscriptions

Results 79 graphql-redis-subscriptions issues
Sort by recently updated
recently updated
newest added

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

enhancement
help wanted
needs-rebase

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** ![Screenshot_13](https://user-images.githubusercontent.com/74120006/141155600-d316dade-93d7-424c-a696-e670f6535e81.png) **Client side code example** ![Screenshot_14](https://user-images.githubusercontent.com/74120006/141155808-287ece47-3456-48b5-8fdb-c323697b0d8a.png) **Issue** ![pingggggggggggg](https://user-images.githubusercontent.com/74120006/141156686-93cb43d9-63c4-4d98-bca2-9b9654f87f28.png) **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:...

help wanted
needs-rebase

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...

enhancement
help wanted