Open
Description
Subscriptions need to be implemented.
They can be that easy:
var onCommentsAdded = graph.subscribe`{ commendAdded { user {name}, text } }`
onCommentsAdded(function (data) {
console.log(data.user.name)
})
And can be unsubscribed.
var onCommentsAdded = graph.subscribe`{ commendAdded { user {name}, text } }`
onCommentsAdded.unsubscribe()