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