Skip to content

Instantly share code, notes, and snippets.

@aligos
Created November 5, 2016 06:42
Show Gist options
  • Save aligos/806b817d040335215c71ba7338a8f71b to your computer and use it in GitHub Desktop.
Save aligos/806b817d040335215c71ba7338a8f71b to your computer and use it in GitHub Desktop.
subscriptions js votemon-server
import { PubSub, SubscriptionManager } from 'graphql-subscriptions';
import schema from './schema';
const pubsub = new PubSub();
const subscriptionManager = new SubscriptionManager({
schema,
pubsub,
});
export { subscriptionManager, pubsub };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment