Mutations
customPersonDelete
Delete a custom person.
mutation CustomPersonDelete($where: BusinessPersonWhereInput!) {
customPersonDelete(where: $where) {
success
person {
id
name
}
}
}input BusinessPersonWhereInput {
id: BusinessPersonId!
}Arguments
where BusinessPersonWhereInput! 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.