is there currently an issue with subscriptions in ...
# prisma-whats-new
t
is there currently an issue with subscriptions in the graphcool simple api? It’s no longer picking up on changes to relations, only scalar field changes are triggering it… even with a fairly open subscriptions such as:
Copy code
subscription {
  Ticket {
    node {
      id
      status {
        name
      }
    }
    updatedFields
  }
}
It picks up if I change a text field like
description
but not if I update the
status
hmm. looking back at the docs, it says you have to create a ‘dummy’ scalar field and also update that when you update the relation… Is this new? This subscription was working before…perhaps another field was being updated as well before - I will check the git history
old query was setting another value to
false
every time which was being picked up even if the value was already
false