history-trail-query.gql 311 B

12345678910111213141516
  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. }