You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i have deployed my hasura app on hasura-cloud, and trying to call a subscription using the generated typed client, but somehow there is no log for the subscription on the client.
this is my query in graphql console, working fine, but requesting through a chained query is not really working
app.listen(PORT, () => {
console.log('Server is listening on port :', PORT)
console.log('adding subscriptions');
graphqlClient.chain.subscription.users().execute({email:1,id:1,created_at:1}).subscribe((data)=>{
console.log('subscription users->', data);
})
})
The text was updated successfully, but these errors were encountered:
i have deployed my hasura app on hasura-cloud, and trying to call a subscription using the generated typed client, but somehow there is no log for the subscription on the client.
this is my query in graphql console, working fine, but requesting through a chained query is not really working
The text was updated successfully, but these errors were encountered: