1
0
Fork 0
GPT4FREE/gpt4free/quora/graphql/ChatPaginationQuery.graphql

27 lines
686 B
GraphQL
Raw Normal View History

2023-03-29 20:10:42 +00:00
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
}
}
}
}
}