Hi, I have an issue which I havent encountered ye...
# prisma-whats-new
m
Hi, I have an issue which I havent encountered yet: When I have a 1-many relaytion like so:
Copy code
type Mother{
  id: ID! @unique
  children: [Children!]!
}
type Children{
  id: ID! @unique
  mother: Mother
}
and later change it to
Copy code
type Mother{
id: ID! @unique
children: [Children!]!
}
type Children{
id: ID! @unique
mother: Mother!
}
making the dependency required, I get the output error:
Copy code
Hooks:
Checking, if schema file changed !
 ▸    MotherUpdateWithoutChildrenDataInput fields must
 ▸    be an object with field names as keys or a
 ▸    function which returns such an object.
I get this issue even after running
prisma delete
and then running
prisma deploy
. Does anyone have any Ideas how to interpret this?
m
Thx @nilan, any idea when this will be resolved/assigned?