Skip to content
Last update: June 20, 2024

deleteFcmToken mutation

This mutation is used to delete a Firebase Cloud Messaging (FCM) token from the system.

Arguments

The InputDeleteFcmTokenType! is used to provide the necessary details for deleting an FCM token.

Field Description
token String! The FCM token to be deleted.

Possible returns

Possible return Description
Boolean Indicates whether the FCM token was successfully deleted.
1
2
3
mutation {
  deleteFcmToken(command: { token: "qwerty" })
}
1
2
3
4
5
{
  "command": {
    "token": "qwerty"
  }
}