You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
311 B

  1. query($id: Int!, $offsetPage: Int, $offsetSize: Int) {
  2. pages {
  3. history(id:$id, offsetPage:$offsetPage, offsetSize:$offsetSize) {
  4. trail {
  5. versionId
  6. authorId
  7. authorName
  8. actionType
  9. valueBefore
  10. valueAfter
  11. createdAt
  12. }
  13. total
  14. }
  15. }
  16. }