Mutation
mutation DeleteChatApp($input: DeleteChatAppInput!) {
deleteChatApp(input: $input) {
error {
message
type
code
fields {
field
message
type
}
}
}
}Variables
{
"input": {
"chatAppId": "id"
}
}Response
{
"data": {
"deleteChatApp": {
"error": {
"message": "string",
"type": "VALIDATION",
"code": "string",
"fields": [
{
"field": "string",
"message": "string",
"type": "VALIDATION"
}
]
}
}
}
}Mutations
deleteChatApp
Permanently delete a chat app. This action cannot be undone.
Requires the chatApp:delete permission.
MUTATION
deleteChatApp(input: DeleteChatAppInput!): DeleteChatAppOutput!Arguments
input
required
Returns
error
Mutation
mutation DeleteChatApp($input: DeleteChatAppInput!) {
deleteChatApp(input: $input) {
error {
message
type
code
fields {
field
message
type
}
}
}
}Variables
{
"input": {
"chatAppId": "id"
}
}Response
{
"data": {
"deleteChatApp": {
"error": {
"message": "string",
"type": "VALIDATION",
"code": "string",
"fields": [
{
"field": "string",
"message": "string",
"type": "VALIDATION"
}
]
}
}
}
}Was this page helpful?

