-
-
Notifications
You must be signed in to change notification settings - Fork 88
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()
pimterry and vdot0x230910201111