summaryrefslogtreecommitdiffstats
path: root/quora/graphql/ShareMessagesMutation.graphql
diff options
context:
space:
mode:
Diffstat (limited to 'quora/graphql/ShareMessagesMutation.graphql')
-rw-r--r--quora/graphql/ShareMessagesMutation.graphql9
1 files changed, 9 insertions, 0 deletions
diff --git a/quora/graphql/ShareMessagesMutation.graphql b/quora/graphql/ShareMessagesMutation.graphql
new file mode 100644
index 00000000..92e80db5
--- /dev/null
+++ b/quora/graphql/ShareMessagesMutation.graphql
@@ -0,0 +1,9 @@
+mutation ShareMessagesMutation(
+ $chatId: BigInt!
+ $messageIds: [BigInt!]!
+ $comment: String
+) {
+ messagesShare(chatId: $chatId, messageIds: $messageIds, comment: $comment) {
+ shareCode
+ }
+}