summaryrefslogtreecommitdiffstats
path: root/quora/graphql/ShareMessagesMutation.graphql
blob: 92e80db576c84688b41ee32e1ac68569c7c7a574 (plain) (blame)
1
2
3
4
5
6
7
8
9
mutation ShareMessagesMutation(
    $chatId: BigInt!
    $messageIds: [BigInt!]!
    $comment: String
) {
    messagesShare(chatId: $chatId, messageIds: $messageIds, comment: $comment) {
        shareCode
    }
}