From 6a599d7d2bcdd2717a56b8b2e82114fcce92c50d Mon Sep 17 00:00:00 2001 From: Dean Wenstrand Date: Wed, 22 Jul 2026 19:59:43 -0700 Subject: [PATCH] Add replyToCommentId to CommentGQL Co-Authored-By: Claude Fable 5 --- src/index.tsx | 1 + src/schema.gql | 1 + 2 files changed, 2 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index d3844df..64f3507 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -274,6 +274,7 @@ export type CommentGql = { id: Scalars["Int"]["output"]; message: Scalars["String"]["output"]; replies: Array; + replyToCommentId?: Maybe; user: UserGql; }; diff --git a/src/schema.gql b/src/schema.gql index e2c900d..2fc2db0 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -221,6 +221,7 @@ type CommentGQL { user: UserGQL! message: String! replies: [CommentGQL!]! + replyToCommentId: Int } type CountLeaderboardGQL {