fix(server): add mode property on mention doc input (#10853)

This commit is contained in:
fengmk2
2025-03-14 08:23:27 +00:00
parent c31d01b2c2
commit 114e89961f
9 changed files with 180 additions and 13 deletions

View File

@@ -300,6 +300,12 @@ type DocHistoryType {
workspaceId: String!
}
"""Doc mode"""
enum DocMode {
edgeless
page
}
type DocNotFoundDataType {
docId: String!
spaceId: String!
@@ -755,6 +761,7 @@ input MentionDocInput {
"""The element id in the doc"""
elementId: String
id: String!
mode: DocMode!
title: String!
}
@@ -762,6 +769,7 @@ type MentionDocType {
blockId: String
elementId: String
id: String!
mode: DocMode!
title: String!
}