Testing repo for: Mercurius Issue
START SERVER
npm run up #start redis
npm run start:mqemitter or npm run start:redis-sub #start server with mqemitter-redis or graphql-redis-subscriptions
SIMULATE REDIS DOWN
npm run down #stop redis
Graphql Query:
subscription VoteAdded {
voteAdded(voteId: "1") {
id
title
ayes
noes
}
}
mutation VoteNo {
voteNo(voteId: "1") {
id
title
ayes
noes
}
}