14 lines
209 B
GraphQL
14 lines
209 B
GraphQL
query($id: Int!, $offset: Int) {
|
|
pages {
|
|
history(id:$id, offset:$offset) {
|
|
versionId
|
|
authorId
|
|
authorName
|
|
actionType
|
|
valueBefore
|
|
valueAfter
|
|
createdAt
|
|
}
|
|
}
|
|
}
|