summaryrefslogtreecommitdiffstats
path: root/poe/graphql/AddMessageBreakMutation.graphql
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--poe/graphql/AddMessageBreakMutation.graphql17
1 files changed, 17 insertions, 0 deletions
diff --git a/poe/graphql/AddMessageBreakMutation.graphql b/poe/graphql/AddMessageBreakMutation.graphql
new file mode 100644
index 00000000..b28d9903
--- /dev/null
+++ b/poe/graphql/AddMessageBreakMutation.graphql
@@ -0,0 +1,17 @@
+mutation AddMessageBreakMutation($chatId: BigInt!) {
+ messageBreakCreate(chatId: $chatId) {
+ message {
+ id
+ __typename
+ messageId
+ text
+ linkifiedText
+ authorNickname
+ state
+ vote
+ voteReason
+ creationTime
+ suggestedReplies
+ }
+ }
+}