8 lines
159 B
GraphQL
8 lines
159 B
GraphQL
|
mutation StaleChatUpdateMutation($chatId: BigInt!) {
|
||
|
staleChatUpdate(chatId: $chatId) {
|
||
|
message {
|
||
|
...MessageFragment
|
||
|
}
|
||
|
}
|
||
|
}
|