17 lines
311 B
GraphQL
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
|
|
}
|
|
}
|
|
}
|