wikijs-fork/client/graph/history/history-trail-query.gql
2018-11-25 01:28:20 -05:00

14 lines
209 B
GraphQL

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