Return profile image in feed
All checks were successful
Tests / Tests (pull_request) Successful in 10s
All checks were successful
Tests / Tests (pull_request) Successful in 10s
This commit is contained in:
@@ -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
|
||||
|
@@ -49,6 +49,7 @@ query GetVideoFeed(
|
||||
id
|
||||
owner {
|
||||
username
|
||||
profileImageUri
|
||||
}
|
||||
name
|
||||
screenshotUri
|
||||
|
Reference in New Issue
Block a user