To find the state of this project's repository at the time of any of these versions, check out the tags.
history-trail-query.gql 311 Bytes
query($id: Int!, $offsetPage: Int, $offsetSize: Int) {
  pages {
    history(id:$id, offsetPage:$offsetPage, offsetSize:$offsetSize) {
      trail {
        versionId
        authorId
        authorName
        actionType
        valueBefore
        valueAfter
        createdAt
      }
      total
    }
  }
}