hey all :wave: does anyone using subscriptions wit...
# prisma-whats-new
l
hey all 👋 does anyone using subscriptions with Graphcool and Apollo ever find that the updated node doesn't reflect the new data? For example, I have a subscription of one of my models, which has a boolean field. I'm using Apollo's
subscribeToMore
(http://dev.apollodata.com/react/subscriptions.html#subscribe-to-more). If I repeatedly flip the boolean field in Graphcool's console and inspect the
subscriptionData
when the subscription is triggered, I might see that boolean field on the record go
true
->
false
->
false
->
false
->
true
. On the third occasion, the updated node is not reflecting the new data. In fact, the node is identical to the previous data (and if that were true, the subscription shouldn't have been triggered at all). Any idea why this happens or how to resolve it?