Skip to content
Last update: April 11, 2024

deleteContact mutation

This mutation deletes a contact.

Arguments

The InputDeleteContactType! represents the input object for deleting a contact.

Field Description
contactId String! The Id of the contact.

Possible returns

Possible return Description
Boolean Indicates the success or failure of the deletion operation.
1
2
3
mutation($command: InputDeleteContactType!){
  deleteContact(command: $command)
}
1
2
3
4
5
{
  "command": {
    "contactId": "550e9b14-ddde-46fe-bc28-0afec83ade96"
  }
}