feat: page history pagination + dark mode fix
This commit is contained in:
@@ -1,13 +1,16 @@
|
||||
query($id: Int!, $offset: Int) {
|
||||
query($id: Int!, $offsetPage: Int, $offsetSize: Int) {
|
||||
pages {
|
||||
history(id:$id, offset:$offset) {
|
||||
versionId
|
||||
authorId
|
||||
authorName
|
||||
actionType
|
||||
valueBefore
|
||||
valueAfter
|
||||
createdAt
|
||||
history(id:$id, offsetPage:$offsetPage, offsetSize:$offsetSize) {
|
||||
trail {
|
||||
versionId
|
||||
authorId
|
||||
authorName
|
||||
actionType
|
||||
valueBefore
|
||||
valueAfter
|
||||
createdAt
|
||||
}
|
||||
total
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user