Return profile image in feed
All checks were successful
Tests / Tests (pull_request) Successful in 10s

This commit is contained in:
Kat Huang 2024-11-05 12:53:42 -07:00
parent 607504261c
commit 6b410b3d78
2 changed files with 7 additions and 1 deletions

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