Mutations
customPersonEdit
Edit the details of a custom person.
mutation CustomPersonEdit($where: CustomPersonEditInput!) {
customPersonEdit(where: $where) {
success
person {
id
name
}
}
}input CustomPersonEditInput {
id: BusinessPersonId!
name: String!
citizenship: CountryCode
birthDate: ConnectPartialDateInput
nin: String
sex: Gender
address: [AddressInput!]!
}Arguments
where CustomPersonEditInput! non-null input
Type
CustomPersonPayload object
CustomPersonPayload
The payload for a custom person mutation.
Response Fields
success Boolean! non-null scalar
person BusinessPerson object
BusinessPerson
A person resource.