E.g. ``` type Consultancy { id: ID! @id organi...
# orm-help
a
E.g.
Copy code
type 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
Copy code
prisma.updateConsultancy({
      data: {
        ...
      },
      where: { organization: {id: id}
    })
But it seems that generated client have only id in where, without organization