summaryrefslogtreecommitdiffstats
path: root/poe/graphql/SendMessageMutation.graphql
diff options
context:
space:
mode:
authort.me/xtekky <98614666+xtekky@users.noreply.github.com>2023-04-06 21:24:04 +0200
committert.me/xtekky <98614666+xtekky@users.noreply.github.com>2023-04-06 21:24:04 +0200
commit76571f25911657180ee17eed7b302a363e7562fc (patch)
treef3c1a8eae0839f0b55e741622004a469baff76c7 /poe/graphql/SendMessageMutation.graphql
parentimportant note (diff)
downloadgpt4free-76571f25911657180ee17eed7b302a363e7562fc.tar
gpt4free-76571f25911657180ee17eed7b302a363e7562fc.tar.gz
gpt4free-76571f25911657180ee17eed7b302a363e7562fc.tar.bz2
gpt4free-76571f25911657180ee17eed7b302a363e7562fc.tar.lz
gpt4free-76571f25911657180ee17eed7b302a363e7562fc.tar.xz
gpt4free-76571f25911657180ee17eed7b302a363e7562fc.tar.zst
gpt4free-76571f25911657180ee17eed7b302a363e7562fc.zip
Diffstat (limited to 'poe/graphql/SendMessageMutation.graphql')
-rw-r--r--poe/graphql/SendMessageMutation.graphql40
1 files changed, 40 insertions, 0 deletions
diff --git a/poe/graphql/SendMessageMutation.graphql b/poe/graphql/SendMessageMutation.graphql
new file mode 100644
index 00000000..4b0a4383
--- /dev/null
+++ b/poe/graphql/SendMessageMutation.graphql
@@ -0,0 +1,40 @@
+mutation chatHelpers_sendMessageMutation_Mutation(
+ $chatId: BigInt!
+ $bot: String!
+ $query: String!
+ $source: MessageSource
+ $withChatBreak: Boolean!
+) {
+ messageEdgeCreate(chatId: $chatId, bot: $bot, query: $query, source: $source, withChatBreak: $withChatBreak) {
+ chatBreak {
+ cursor
+ node {
+ id
+ messageId
+ text
+ author
+ suggestedReplies
+ creationTime
+ state
+ }
+ id
+ }
+ message {
+ cursor
+ node {
+ id
+ messageId
+ text
+ author
+ suggestedReplies
+ creationTime
+ state
+ chat {
+ shouldShowDisclaimer
+ id
+ }
+ }
+ id
+ }
+ }
+}