Moritz
02/07/2018, 12:53 PMtype Mother{
id: ID! @unique
children: [Children!]!
}
type Children{
id: ID! @unique
mother: Mother
}
and later change it to
type Mother{
id: ID! @unique
children: [Children!]!
}
type Children{
id: ID! @unique
mother: Mother!
}
making the dependency required, I get the output error:
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?nilan
02/07/2018, 12:53 PMMoritz
02/07/2018, 1:01 PM