Any known issues regarding prisma’s subscriptions ...
# orm-help
w
Any known issues regarding prisma’s subscriptions ? I can’t get them to fire when updating a simple model
Copy code
subscription {
  product(where: {
    mutation_in: [UPDATED]
  }) {
    mutation,
    updatedFields
  }
}
Copy code
mutation {
  updateProduct(
    where: { id: "cjgfks9jq003v0946wmgoh5ac" }
    data: {
      name: "FR-M"
    }
  ) {id name}
}
n
what's your Prisma server version, @weakky?
w
prisma/1.7.1 (darwin-x64) node-v8.11.1
n
please provide a reproducible example here: https://github.com/graphcool/prisma/
w
yeyeye!