This commit is contained in:
parent
85cd37f70f
commit
31baa2b096
@ -3214,7 +3214,12 @@ export type GetFeedQuery = {
|
|||||||
__typename?: "ReactionGQL";
|
__typename?: "ReactionGQL";
|
||||||
videoId: number;
|
videoId: number;
|
||||||
reaction: ReactionEnum;
|
reaction: ReactionEnum;
|
||||||
user: { __typename?: "UserGQL"; id: number; username: string };
|
user: {
|
||||||
|
__typename?: "UserGQL";
|
||||||
|
id: number;
|
||||||
|
username: string;
|
||||||
|
profileImageUri?: string | null;
|
||||||
|
};
|
||||||
}>;
|
}>;
|
||||||
}>;
|
}>;
|
||||||
pageInfo: {
|
pageInfo: {
|
||||||
@ -3273,7 +3278,12 @@ export type VideoCardFieldsFragment = {
|
|||||||
__typename?: "ReactionGQL";
|
__typename?: "ReactionGQL";
|
||||||
videoId: number;
|
videoId: number;
|
||||||
reaction: ReactionEnum;
|
reaction: ReactionEnum;
|
||||||
user: { __typename?: "UserGQL"; id: number; username: string };
|
user: {
|
||||||
|
__typename?: "UserGQL";
|
||||||
|
id: number;
|
||||||
|
username: string;
|
||||||
|
profileImageUri?: string | null;
|
||||||
|
};
|
||||||
}>;
|
}>;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -3341,7 +3351,12 @@ export type GetVideoFeedQuery = {
|
|||||||
__typename?: "ReactionGQL";
|
__typename?: "ReactionGQL";
|
||||||
videoId: number;
|
videoId: number;
|
||||||
reaction: ReactionEnum;
|
reaction: ReactionEnum;
|
||||||
user: { __typename?: "UserGQL"; id: number; username: string };
|
user: {
|
||||||
|
__typename?: "UserGQL";
|
||||||
|
id: number;
|
||||||
|
username: string;
|
||||||
|
profileImageUri?: string | null;
|
||||||
|
};
|
||||||
}>;
|
}>;
|
||||||
}>;
|
}>;
|
||||||
pageInfo: {
|
pageInfo: {
|
||||||
@ -5039,6 +5054,7 @@ export const VideoCardFieldsFragmentDoc = gql`
|
|||||||
user {
|
user {
|
||||||
id
|
id
|
||||||
username
|
username
|
||||||
|
profileImageUri
|
||||||
}
|
}
|
||||||
reaction
|
reaction
|
||||||
}
|
}
|
||||||
|
@ -63,6 +63,7 @@ fragment VideoCardFields on VideoGQL {
|
|||||||
user {
|
user {
|
||||||
id
|
id
|
||||||
username
|
username
|
||||||
|
profileImageUri
|
||||||
}
|
}
|
||||||
reaction
|
reaction
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user