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

14 lines
209 B
Plaintext
Raw Normal View History

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