dean/nested-comment-replies #307
@@ -274,6 +274,7 @@ export type CommentGql = {
|
||||
id: Scalars["Int"]["output"];
|
||||
message: Scalars["String"]["output"];
|
||||
replies: Array<CommentGql>;
|
||||
replyToCommentId?: Maybe<Scalars["Int"]["output"]>;
|
||||
user: UserGql;
|
||||
};
|
||||
|
||||
@@ -5008,6 +5009,7 @@ export type GetFeedQuery = {
|
||||
__typename?: "CommentGQL";
|
||||
id: number;
|
||||
message: string;
|
||||
replyToCommentId?: number | null;
|
||||
user: {
|
||||
__typename?: "UserGQL";
|
||||
id: number;
|
||||
@@ -5123,6 +5125,7 @@ export type VideoCardFieldsFragment = {
|
||||
__typename?: "CommentGQL";
|
||||
id: number;
|
||||
message: string;
|
||||
replyToCommentId?: number | null;
|
||||
user: {
|
||||
__typename?: "UserGQL";
|
||||
id: number;
|
||||
@@ -5271,6 +5274,7 @@ export type GetVideoFeedQuery = {
|
||||
__typename?: "CommentGQL";
|
||||
id: number;
|
||||
message: string;
|
||||
replyToCommentId?: number | null;
|
||||
user: {
|
||||
__typename?: "UserGQL";
|
||||
id: number;
|
||||
@@ -8514,6 +8518,7 @@ export type GetVideoSocialDetailsByIdQuery = {
|
||||
__typename?: "CommentGQL";
|
||||
id: number;
|
||||
message: string;
|
||||
replyToCommentId?: number | null;
|
||||
user: {
|
||||
__typename?: "UserGQL";
|
||||
id: number;
|
||||
@@ -8621,6 +8626,7 @@ export type GetVideoCardQuery = {
|
||||
__typename?: "CommentGQL";
|
||||
id: number;
|
||||
message: string;
|
||||
replyToCommentId?: number | null;
|
||||
user: {
|
||||
__typename?: "UserGQL";
|
||||
id: number;
|
||||
@@ -9421,6 +9427,7 @@ export const VideoCardFieldsFragmentDoc = gql`
|
||||
replies {
|
||||
id
|
||||
message
|
||||
replyToCommentId
|
||||
user {
|
||||
...UserSocialsFields
|
||||
}
|
||||
@@ -18365,6 +18372,7 @@ export const GetVideoSocialDetailsByIdDocument = gql`
|
||||
replies {
|
||||
id
|
||||
message
|
||||
replyToCommentId
|
||||
user {
|
||||
...UserSocialsFields
|
||||
}
|
||||
|
||||
@@ -78,6 +78,7 @@ fragment VideoCardFields on VideoGQL {
|
||||
replies {
|
||||
id
|
||||
message
|
||||
replyToCommentId
|
||||
user {
|
||||
...UserSocialsFields
|
||||
}
|
||||
|
||||
@@ -131,6 +131,7 @@ query GetVideoSocialDetailsById($videoId: Int!) {
|
||||
replies {
|
||||
id
|
||||
message
|
||||
replyToCommentId
|
||||
user {
|
||||
...UserSocialsFields
|
||||
}
|
||||
|
||||
@@ -221,6 +221,7 @@ type CommentGQL {
|
||||
user: UserGQL!
|
||||
message: String!
|
||||
replies: [CommentGQL!]!
|
||||
replyToCommentId: Int
|
||||
}
|
||||
|
||||
type CountLeaderboardGQL {
|
||||
|
||||
Reference in New Issue
Block a user