With the datamodel: ``` type Client { invitees: ...
# orm-help
i
With the datamodel:
Copy code
type Client {
  invitees: [ClientInvitee!]!
  (...)
}
type ClientInvitee @embedded {
  email: String!
  permissions: ClientInviteeUserClientPermissions!
}
type ClientInviteeUserClientPermissions @embedded {
  company: Boolean! @default(value: false)
  soundtracks: Boolean! @default(value: false)
  fence: Zone @relation(link: INLINE)
}
I find a bit strange there's no permissions to update:
Copy code
type ClientInviteeUpdateManyDataInput {
email: String
}
Plans for this to change? Soon?
@dan