feat(server): send comment notifications (#12925)

close CLOUD-228















#### PR Dependency Tree


* **PR #12924**
  * **PR #12925** 👈

This tree was auto-generated by
[Charcoal](https://github.com/danerwilliams/charcoal)
This commit is contained in:
fengmk2
2025-07-01 22:25:31 +08:00
committed by GitHub
parent 7ed72ed1d0
commit a2810f3f61
5 changed files with 376 additions and 1 deletions

View File

@@ -125,6 +125,13 @@ type CommentChangeObjectTypeEdge {
input CommentCreateInput {
content: JSONObject!
docId: ID!
docMode: DocMode!
docTitle: String!
"""
The mention user ids, if not provided, the comment will not be mentioned
"""
mentions: [String!]
workspaceId: ID!
}
@@ -1584,6 +1591,13 @@ input RemoveContextFileInput {
input ReplyCreateInput {
commentId: ID!
content: JSONObject!
docMode: DocMode!
docTitle: String!
"""
The mention user ids, if not provided, the comment reply will not be mentioned
"""
mentions: [String!]
}
type ReplyObjectType {