From 3be905b742b040c7f497727f9e765a8d709baa44 Mon Sep 17 00:00:00 2001 From: "t.me/xtekky" <98614666+xtekky@users.noreply.github.com> Date: Mon, 10 Apr 2023 01:09:29 +0200 Subject: rename poe api ( gpt 4 ) to quora due to having same name as poe-api, I changed the name for it to be used with the other package --- quora/graphql/SendMessageMutation.graphql | 40 +++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 quora/graphql/SendMessageMutation.graphql (limited to 'quora/graphql/SendMessageMutation.graphql') diff --git a/quora/graphql/SendMessageMutation.graphql b/quora/graphql/SendMessageMutation.graphql new file mode 100644 index 00000000..4b0a4383 --- /dev/null +++ b/quora/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 + } + } +} -- cgit v1.2.3