summaryrefslogtreecommitdiffstats
path: root/poe/graphql/ChatPaginationQuery.graphql
diff options
context:
space:
mode:
Diffstat (limited to 'poe/graphql/ChatPaginationQuery.graphql')
-rw-r--r--poe/graphql/ChatPaginationQuery.graphql26
1 files changed, 26 insertions, 0 deletions
diff --git a/poe/graphql/ChatPaginationQuery.graphql b/poe/graphql/ChatPaginationQuery.graphql
new file mode 100644
index 00000000..f2452cd6
--- /dev/null
+++ b/poe/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
+ }
+ }
+ }
+ }
+}