aldarund
04/12/2019, 7:26 PMtype Consultancy {
id: ID! @id
organization: Organization @relation(name: "OrganizationConsultancy")
}
type Organization {
id: ID! @id
consultancy: Consultancy @relation(link: INLINE, name: "OrganizationConsultancy")
}
And then i want
prisma.updateConsultancy({
data: {
...
},
where: { organization: {id: id}
})
But it seems that generated client have only id in where, without organization