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

@@ -165,6 +165,10 @@ export interface CommentChangeObjectTypeEdge {
export interface CommentCreateInput {
content: Scalars['JSONObject']['input'];
docId: Scalars['ID']['input'];
docMode: DocMode;
docTitle: Scalars['String']['input'];
/** The mention user ids, if not provided, the comment will not be mentioned */
mentions?: InputMaybe<Array<Scalars['String']['input']>>;
workspaceId: Scalars['ID']['input'];
}
@@ -2173,6 +2177,10 @@ export interface RemoveContextFileInput {
export interface ReplyCreateInput {
commentId: Scalars['ID']['input'];
content: Scalars['JSONObject']['input'];
docMode: DocMode;
docTitle: Scalars['String']['input'];
/** The mention user ids, if not provided, the comment reply will not be mentioned */
mentions?: InputMaybe<Array<Scalars['String']['input']>>;
}
export interface ReplyObjectType {