Strise Connect API Docs
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

BusinessPersonWhereInput!

Type

CustomPersonPayload object

CustomPersonPayload The payload for a custom person mutation.

Response Fields

success Boolean! non-null scalar

Boolean!

person BusinessPerson object

BusinessPerson A person resource.

On this page