I used to be able to do something like this: ```...
# prisma-whats-new
s
I used to be able to do something like this:
Copy code
mutation {
  createPerson(
    childern: [{
      name: "SomeName"
    }]
  ) {
    id
}
So creating a relation with one mutation. Now it just gives me
Copy code
Insufficient permissions for this mutation
. It took me soooo long to figure out it's actually this "inline relation mutation" that's causing the permission error! But now my question is: Is this intended behaviour? Are these kinds of mutations not allowed anymore? Strange thing is that when I allow all operations (so if I do operation: "*") it works fine, but if I change to per-model permissions, it doesn't work