wikijs-fork/client/graph/history/history-trail-query.gql

17 lines
311 B
Plaintext
Raw Normal View History

query($id: Int!, $offsetPage: Int, $offsetSize: Int) {
2018-11-25 06:28:20 +00:00
pages {
history(id:$id, offsetPage:$offsetPage, offsetSize:$offsetSize) {
trail {
versionId
authorId
authorName
actionType
valueBefore
valueAfter
createdAt
}
total
2018-11-25 06:28:20 +00:00
}
}
}