Mutations
privatePersonUpdate
No description
mutation PrivatePersonUpdate($where: PrivatePersonUpdateInput!) {
privatePersonUpdate(where: $where) {
success
person {
id
name
}
}
}input PrivatePersonUpdateInput {
id: PrivatePersonId!
name: String
nin: String
country: CountryCode
birthDate: Date
birthYear: Year
gender: Gender
address: [AddressInput!]
citizenship: CountryCode
}Arguments
where PrivatePersonUpdateInput! non-null input
Type
PrivatePersonPayload object
PrivatePersonPayload
The payload for a PrivatePerson mutation.