Mutations
customPersonCreate
Create a custom person.
mutation CustomPersonCreate($where: CustomPersonCreateInput!) {
customPersonCreate(where: $where) {
success
person {
id
name
}
}
}input CustomPersonCreateInput {
name: String!
citizenship: CountryCode
birthDate: ConnectPartialDateInput
nin: String
sex: Gender
address: [AddressInput!]!
}Arguments
where CustomPersonCreateInput! 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.