Giter VIP home page Giter VIP logo

Comments (3)

pso-aeb avatar pso-aeb commented on June 7, 2024 1

Had the same problem.

In subscription.js, add console.log(schema) in the beginning. It will likely be undefined.

My solution: My Imports in index.js were in the wrong order. You must first import subscriptions.js, and only then `schema.jsยด.

from graphql-subscriptions.

stubailo avatar stubailo commented on June 7, 2024

It might be a circular dependency issue.

from graphql-subscriptions.

Darkbladecr avatar Darkbladecr commented on June 7, 2024

So I adjusted the way I was loading the subscriptionServer, particularly removing the http.createServer and loading my express app as the server:

new SubscriptionServer({
	subscriptionManager
}, {
	server: app
});

Otherwise I adjusted the setupFunctions and it appears to be working now!

// subscriptions.js
import { PubSub, SubscriptionManager } from 'graphql-subscriptions';

import schema from './schema';

const pubsub = new PubSub();

const subManger = new SubscriptionManager({
	schema,
	pubsub,
	setupFunctions: {
		todoAdded: (options, args) => ({
			newTodosChannel: {
				filter: todo => todo.id
			},
		}),
	},
});

subManger.subscribe({
	query: `subscription todos($completed:Boolean) {
				todoAdded(completed:$completed){
					id
					title
					completed
				}
			}`,
	variables: {
		completed: null
	},
	callback: (err, data) => {
		if (err) {
			console.log(err)
		}
	}
});

pubsub.publish('newTodosChannel', {
	id: 123,
	title: 'testing graphql subscriptions',
	completed: false
});

export { subManger, pubsub };

from graphql-subscriptions.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.