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/ChatPaginationQuery.graphql | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 quora/graphql/ChatPaginationQuery.graphql (limited to 'quora/graphql/ChatPaginationQuery.graphql') diff --git a/quora/graphql/ChatPaginationQuery.graphql b/quora/graphql/ChatPaginationQuery.graphql new file mode 100644 index 00000000..f2452cd6 --- /dev/null +++ b/quora/graphql/ChatPaginationQuery.graphql @@ -0,0 +1,26 @@ +query ChatPaginationQuery($bot: String!, $before: String, $last: Int! = 10) { + chatOfBot(bot: $bot) { + id + __typename + messagesConnection(before: $before, last: $last) { + pageInfo { + hasPreviousPage + } + edges { + node { + id + __typename + messageId + text + linkifiedText + authorNickname + state + vote + voteReason + creationTime + suggestedReplies + } + } + } + } +} -- cgit v1.2.3