could someone help me figure out why my subscripti...
# prisma-whats-new
j
could someone help me figure out why my subscriptions are not being invoked?
In the playground I'm doing
Copy code
subscription {
  User(filter: {
    mutation_in: [UPDATED]
  }) {
    updatedFields
    node {
      id
      email
      name
    }
  }
}
but if I update the user this will not get invoked