dean/nested-comment-replies #307

Merged
dean merged 2 commits from dean/nested-comment-replies into master 2026-07-23 03:24:39 +00:00
4 changed files with 11 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;
}; };
@@ -5008,6 +5009,7 @@ export type GetFeedQuery = {
__typename?: "CommentGQL"; __typename?: "CommentGQL";
id: number; id: number;
message: string; message: string;
replyToCommentId?: number | null;
user: { user: {
__typename?: "UserGQL"; __typename?: "UserGQL";
id: number; id: number;
@@ -5123,6 +5125,7 @@ export type VideoCardFieldsFragment = {
__typename?: "CommentGQL"; __typename?: "CommentGQL";
id: number; id: number;
message: string; message: string;
replyToCommentId?: number | null;
user: { user: {
__typename?: "UserGQL"; __typename?: "UserGQL";
id: number; id: number;
@@ -5271,6 +5274,7 @@ export type GetVideoFeedQuery = {
__typename?: "CommentGQL"; __typename?: "CommentGQL";
id: number; id: number;
message: string; message: string;
replyToCommentId?: number | null;
user: { user: {
__typename?: "UserGQL"; __typename?: "UserGQL";
id: number; id: number;
@@ -8514,6 +8518,7 @@ export type GetVideoSocialDetailsByIdQuery = {
__typename?: "CommentGQL"; __typename?: "CommentGQL";
id: number; id: number;
message: string; message: string;
replyToCommentId?: number | null;
user: { user: {
__typename?: "UserGQL"; __typename?: "UserGQL";
id: number; id: number;
@@ -8621,6 +8626,7 @@ export type GetVideoCardQuery = {
__typename?: "CommentGQL"; __typename?: "CommentGQL";
id: number; id: number;
message: string; message: string;
replyToCommentId?: number | null;
user: { user: {
__typename?: "UserGQL"; __typename?: "UserGQL";
id: number; id: number;
@@ -9421,6 +9427,7 @@ export const VideoCardFieldsFragmentDoc = gql`
replies { replies {
id id
message message
replyToCommentId
user { user {
...UserSocialsFields ...UserSocialsFields
} }
@@ -18365,6 +18372,7 @@ export const GetVideoSocialDetailsByIdDocument = gql`
replies { replies {
id id
message message
replyToCommentId
user { user {
...UserSocialsFields ...UserSocialsFields
} }

View File

@@ -78,6 +78,7 @@ fragment VideoCardFields on VideoGQL {
replies { replies {
id id
message message
replyToCommentId
user { user {
...UserSocialsFields ...UserSocialsFields
} }

View File

@@ -131,6 +131,7 @@ query GetVideoSocialDetailsById($videoId: Int!) {
replies { replies {
id id
message message
replyToCommentId
user { user {
...UserSocialsFields ...UserSocialsFields
} }

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 {