Add replyToCommentId to CommentGQL

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Dean Wenstrand
2026-07-22 19:59:43 -07:00
parent 17a518429a
commit 6a599d7d2b
2 changed files with 2 additions and 0 deletions

View File

@@ -274,6 +274,7 @@ export type CommentGql = {
id: Scalars["Int"]["output"]; id: Scalars["Int"]["output"];
message: Scalars["String"]["output"]; message: Scalars["String"]["output"];
replies: Array<CommentGql>; replies: Array<CommentGql>;
replyToCommentId?: Maybe<Scalars["Int"]["output"]>;
user: UserGql; user: UserGql;
}; };

View File

@@ -221,6 +221,7 @@ type CommentGQL {
user: UserGQL! user: UserGQL!
message: String! message: String!
replies: [CommentGQL!]! replies: [CommentGQL!]!
replyToCommentId: Int
} }
type CountLeaderboardGQL { type CountLeaderboardGQL {