add profile image uri
All checks were successful
Tests / Tests (pull_request) Successful in 7s

This commit is contained in:
Loewy 2025-04-04 13:19:42 -07:00
parent 85cd37f70f
commit 31baa2b096
2 changed files with 20 additions and 3 deletions

View File

@ -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
} }

View File

@ -63,6 +63,7 @@ fragment VideoCardFields on VideoGQL {
user { user {
id id
username username
profileImageUri
} }
reaction reaction
} }