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