graphql-redis-subscriptions
graphql-redis-subscriptions copied to clipboard
A graphql subscriptions implementation using redis and apollo's graphql-subscriptions
Bumps [eslint](https://github.com/eslint/eslint) from 7.32.0 to 8.21.0. Release notes Sourced from eslint's releases. v8.21.0 Features 7b43ea1 feat: Implement FlatESLint (#16149) (Nicholas C. Zakas) 92bf49a feat: improve the key width calculation in...
 based on https://dev.to/thisdotmedia/graphql-subscriptions-with-nest-how-to-publish-across-multiple-running-servers-15e https://github.dev/rychkog/gql-redis-subscriptions-article/tree/master/src
Bumps [@types/chai-as-promised](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/chai-as-promised) from 7.1.4 to 7.1.5. Commits See full diff in compare view [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...
Bumps [chai](https://github.com/chaijs/chai) from 4.3.4 to 4.3.6. Release notes Sourced from chai's releases. v4.3.6 Update loupe to 2.3.1 v4.3.5 build chaijs fca5bb1 build(deps-dev): bump codecov from 3.1.0 to 3.7.1 (#1446) 747eb4e...
Bumps [@types/simple-mock](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/simple-mock) from 0.8.1 to 0.8.2. Commits See full diff in compare view [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...
Bumps [typescript](https://github.com/Microsoft/TypeScript) from 4.2.4 to 4.7.4. Release notes Sourced from typescript's releases. TypeScript 4.7.4 For release notes, check out the release announcement. For the complete list of fixed issues, check...
``` import { RedisPubSub } from 'graphql-redis-subscriptions'; import { createClient } from 'redis'; const url = `redis://default:PASS@HOST:PORT`; const client = createClient({ socket: { url, }, }); client.on('error', (err) => console.log('Redis...
This is related to #508. When ran encounters the following error: ```es6 import {PrismaClient} from "@prisma/client"; import {RedisPubSub} from 'graphql-redis-subscriptions'; import Redis from 'ioredis'; const options = { host: process.env.REDIS_HOST,...
Hi, I wonder if there is a place for such functionality in this library. What I'm trying to achieve is to be able to do something like that: ``` const...
As title suggest, ioredis needs to be updated. This package won't work with ioredis v5+