Create video card fragment
All checks were successful
Tests / Tests (pull_request) Successful in 16s

This commit is contained in:
Kat Huang 2024-11-05 13:58:31 -07:00
parent b2ce1c2f96
commit c7642e6204
2 changed files with 4 additions and 0 deletions

View File

@ -2802,6 +2802,7 @@ export type VideoCardFieldsFragment = {
tableSize: number;
owner?: {
__typename?: "UserGQL";
id: number;
username: string;
profileImageUri?: string | null;
} | null;
@ -2843,6 +2844,7 @@ export type GetVideoFeedQuery = {
tableSize: number;
owner?: {
__typename?: "UserGQL";
id: number;
username: string;
profileImageUri?: string | null;
} | null;
@ -3991,6 +3993,7 @@ export const VideoCardFieldsFragmentDoc = gql`
fragment VideoCardFields on VideoGQL {
id
owner {
id
username
profileImageUri
}

View File

@ -43,6 +43,7 @@ query GetFeed(
fragment VideoCardFields on VideoGQL {
id
owner {
id
username
profileImageUri
}