Return profile image in feed #114

Merged
kkathuang merged 1 commits from kat/image-uri-feed into master 2024-11-05 12:54:25 -07:00
2 changed files with 7 additions and 1 deletions
Showing only changes of commit 6b410b3d78 - Show all commits

View File

@ -2810,7 +2810,11 @@ export type GetVideoFeedQuery = {
endTime?: any | null;
elapsedTime?: number | null;
tableSize: number;
owner?: { __typename?: "UserGQL"; username: string } | null;
owner?: {
__typename?: "UserGQL";
username: string;
profileImageUri?: string | null;
} | null;
stream?: {
__typename?: "UploadStreamGQL";
id: string;
@ -4340,6 +4344,7 @@ export const GetVideoFeedDocument = gql`
id
owner {
username
profileImageUri
}
name
screenshotUri

View File

@ -49,6 +49,7 @@ query GetVideoFeed(
id
owner {
username
profileImageUri
}
name
screenshotUri