Question: Should `operationAfter`s be firing when ...
# prisma-whats-new
j
Question: Should `operationAfter`s be firing when things are created via nested mutations? eg:
Copy code
mutation {
  createFish(color: "blue", scale: { size: 10 }) {
    id 
  }
}
And suppose I have an
operationAfter
on
scale
creation