Fetch replyToCommentId in comment reply selections
All checks were successful
Tests / Tests (pull_request) Successful in 12s
All checks were successful
Tests / Tests (pull_request) Successful in 12s
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
@@ -5009,6 +5009,7 @@ export type GetFeedQuery = {
|
||||
__typename?: "CommentGQL";
|
||||
id: number;
|
||||
message: string;
|
||||
replyToCommentId?: number | null;
|
||||
user: {
|
||||
__typename?: "UserGQL";
|
||||
id: number;
|
||||
@@ -5124,6 +5125,7 @@ export type VideoCardFieldsFragment = {
|
||||
__typename?: "CommentGQL";
|
||||
id: number;
|
||||
message: string;
|
||||
replyToCommentId?: number | null;
|
||||
user: {
|
||||
__typename?: "UserGQL";
|
||||
id: number;
|
||||
@@ -5272,6 +5274,7 @@ export type GetVideoFeedQuery = {
|
||||
__typename?: "CommentGQL";
|
||||
id: number;
|
||||
message: string;
|
||||
replyToCommentId?: number | null;
|
||||
user: {
|
||||
__typename?: "UserGQL";
|
||||
id: number;
|
||||
@@ -8515,6 +8518,7 @@ export type GetVideoSocialDetailsByIdQuery = {
|
||||
__typename?: "CommentGQL";
|
||||
id: number;
|
||||
message: string;
|
||||
replyToCommentId?: number | null;
|
||||
user: {
|
||||
__typename?: "UserGQL";
|
||||
id: number;
|
||||
@@ -8622,6 +8626,7 @@ export type GetVideoCardQuery = {
|
||||
__typename?: "CommentGQL";
|
||||
id: number;
|
||||
message: string;
|
||||
replyToCommentId?: number | null;
|
||||
user: {
|
||||
__typename?: "UserGQL";
|
||||
id: number;
|
||||
@@ -9422,6 +9427,7 @@ export const VideoCardFieldsFragmentDoc = gql`
|
||||
replies {
|
||||
id
|
||||
message
|
||||
replyToCommentId
|
||||
user {
|
||||
...UserSocialsFields
|
||||
}
|
||||
@@ -18366,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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user