Compare commits

...

2 Commits

Author SHA1 Message Date
6b410b3d78 Return profile image in feed
All checks were successful
Tests / Tests (pull_request) Successful in 10s
2024-11-05 12:53:42 -07:00
607504261c Merge pull request 'Create new get feed operation' (#113) from kat/add-feed into master
Reviewed-on: #113
Reviewed-by: loewy <loewymalkov@gmail.com>
2024-11-04 15:13:56 -07:00
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