Create video card fragment
All checks were successful
Tests / Tests (pull_request) Successful in 16s
All checks were successful
Tests / Tests (pull_request) Successful in 16s
This commit is contained in:
parent
b2ce1c2f96
commit
c7642e6204
@ -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
|
||||
}
|
||||
|
@ -43,6 +43,7 @@ query GetFeed(
|
||||
fragment VideoCardFields on VideoGQL {
|
||||
id
|
||||
owner {
|
||||
id
|
||||
username
|
||||
profileImageUri
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user