mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-13 21:05:19 +00:00
@@ -273,8 +273,8 @@ type CopilotSessionType {
|
||||
}
|
||||
|
||||
type CopilotWorkspaceConfig {
|
||||
files: [CopilotWorkspaceFile!]!
|
||||
ignoredDocs: [String!]!
|
||||
files(pagination: PaginationInput!): PaginatedCopilotWorkspaceFileType!
|
||||
ignoredDocs(pagination: PaginationInput!): PaginatedIgnoredDocsType!
|
||||
workspaceId: String!
|
||||
}
|
||||
|
||||
@@ -287,6 +287,21 @@ type CopilotWorkspaceFile {
|
||||
workspaceId: String!
|
||||
}
|
||||
|
||||
type CopilotWorkspaceFileTypeEdge {
|
||||
cursor: String!
|
||||
node: CopilotWorkspaceFile!
|
||||
}
|
||||
|
||||
type CopilotWorkspaceIgnoredDoc {
|
||||
createdAt: DateTime!
|
||||
docId: String!
|
||||
}
|
||||
|
||||
type CopilotWorkspaceIgnoredDocTypeEdge {
|
||||
cursor: String!
|
||||
node: CopilotWorkspaceIgnoredDoc!
|
||||
}
|
||||
|
||||
input CreateChatMessageInput {
|
||||
attachments: [String!]
|
||||
blobs: [Upload!]
|
||||
@@ -1149,12 +1164,24 @@ type PageInfo {
|
||||
startCursor: String
|
||||
}
|
||||
|
||||
type PaginatedCopilotWorkspaceFileType {
|
||||
edges: [CopilotWorkspaceFileTypeEdge!]!
|
||||
pageInfo: PageInfo!
|
||||
totalCount: Int!
|
||||
}
|
||||
|
||||
type PaginatedGrantedDocUserType {
|
||||
edges: [GrantedDocUserTypeEdge!]!
|
||||
pageInfo: PageInfo!
|
||||
totalCount: Int!
|
||||
}
|
||||
|
||||
type PaginatedIgnoredDocsType {
|
||||
edges: [CopilotWorkspaceIgnoredDocTypeEdge!]!
|
||||
pageInfo: PageInfo!
|
||||
totalCount: Int!
|
||||
}
|
||||
|
||||
type PaginatedNotificationObjectType {
|
||||
edges: [NotificationObjectTypeEdge!]!
|
||||
pageInfo: PageInfo!
|
||||
|
||||
Reference in New Issue
Block a user