wikijs-fork/client/graph/history/history-trail-query.gql
2018-11-25 18:25:52 -05:00

17 lines
311 B
GraphQL

query($id: Int!, $offsetPage: Int, $offsetSize: Int) {
pages {
history(id:$id, offsetPage:$offsetPage, offsetSize:$offsetSize) {
trail {
versionId
authorId
authorName
actionType
valueBefore
valueAfter
createdAt
}
total
}
}
}