Compare commits

..

No commits in common. "170ff70b7a01afbaae35f254eb652d6c775653d1" and "0a5097c5c0ecfca01d094ee07b0da20616c07d94" have entirely different histories.

2 changed files with 3 additions and 22 deletions

View File

@ -3219,12 +3219,7 @@ export type GetFeedQuery = {
id: number; id: number;
username: string; username: string;
profileImageUri?: string | null; profileImageUri?: string | null;
followers?: Array<{ followers?: Array<{ __typename?: "UserGQL"; id: number }> | null;
__typename?: "UserGQL";
id: number;
username: string;
profileImageUri?: string | null;
}> | null;
}; };
}>; }>;
}>; }>;
@ -3289,12 +3284,7 @@ export type VideoCardFieldsFragment = {
id: number; id: number;
username: string; username: string;
profileImageUri?: string | null; profileImageUri?: string | null;
followers?: Array<{ followers?: Array<{ __typename?: "UserGQL"; id: number }> | null;
__typename?: "UserGQL";
id: number;
username: string;
profileImageUri?: string | null;
}> | null;
}; };
}>; }>;
}; };
@ -3368,12 +3358,7 @@ export type GetVideoFeedQuery = {
id: number; id: number;
username: string; username: string;
profileImageUri?: string | null; profileImageUri?: string | null;
followers?: Array<{ followers?: Array<{ __typename?: "UserGQL"; id: number }> | null;
__typename?: "UserGQL";
id: number;
username: string;
profileImageUri?: string | null;
}> | null;
}; };
}>; }>;
}>; }>;
@ -5075,8 +5060,6 @@ export const VideoCardFieldsFragmentDoc = gql`
profileImageUri profileImageUri
followers { followers {
id id
username
profileImageUri
} }
} }
reaction reaction

View File

@ -66,8 +66,6 @@ fragment VideoCardFields on VideoGQL {
profileImageUri profileImageUri
followers { followers {
id id
username
profileImageUri
} }
} }
reaction reaction