ChatPaginationQuery.graphql 686 B

1234567891011121314151617181920212223242526
  1. query ChatPaginationQuery($bot: String!, $before: String, $last: Int! = 10) {
  2. chatOfBot(bot: $bot) {
  3. id
  4. __typename
  5. messagesConnection(before: $before, last: $last) {
  6. pageInfo {
  7. hasPreviousPage
  8. }
  9. edges {
  10. node {
  11. id
  12. __typename
  13. messageId
  14. text
  15. linkifiedText
  16. authorNickname
  17. state
  18. vote
  19. voteReason
  20. creationTime
  21. suggestedReplies
  22. }
  23. }
  24. }
  25. }
  26. }
粤ICP备19079148号