Skip to content
Last update: April 4, 2024

markPushMessageRead mutation

This mutation marks a specific push message as read.

Arguments

The InputMarkPushMessageReadType! is used for a command to mark a push message as read.

Field Description
messageId String! The Id of the push message to be marked as read.

Possible returns

Possible return Description
Boolean Indicates whether the operation of marking the push message as read was successful or not.
1
2
3
mutation markPushMessageRead($command: InputMarkPushMessageReadType!) {
markPushMessageRead(command: $command)
}
1
2
3
4
5
{
"command": {
    "messageId": "80d92257-5286-4fe2-933c-e1280d16677f"
}
}