feat: save conflict resolution
This commit is contained in:
@@ -66,6 +66,10 @@ type PageQuery {
|
||||
id: Int!
|
||||
checkoutDate: Date!
|
||||
): Boolean! @auth(requires: ["write:pages", "manage:pages", "manage:system"])
|
||||
|
||||
conflictLatest(
|
||||
id: Int!
|
||||
): PageConflictLatest! @auth(requires: ["write:pages", "manage:pages", "manage:system"])
|
||||
}
|
||||
|
||||
# -----------------------------------------------
|
||||
@@ -277,6 +281,21 @@ type PageLinkItem {
|
||||
links: [String]!
|
||||
}
|
||||
|
||||
type PageConflictLatest {
|
||||
id: Int!
|
||||
authorId: String!
|
||||
authorName: String!
|
||||
content: String!
|
||||
createdAt: Date!
|
||||
description: String!
|
||||
isPublished: Boolean!
|
||||
locale: String!
|
||||
path: String!
|
||||
tags: [String]
|
||||
title: String!
|
||||
updatedAt: Date!
|
||||
}
|
||||
|
||||
enum PageOrderBy {
|
||||
CREATED
|
||||
ID
|
||||
|
Reference in New Issue
Block a user