add followers to feed operation for reactions
All checks were successful
Tests / Tests (pull_request) Successful in 10s

This commit is contained in:
Loewy 2025-04-08 16:48:12 -07:00
parent b18fedae8e
commit f4445f7ecb
2 changed files with 9 additions and 0 deletions

View File

@ -3219,6 +3219,7 @@ export type GetFeedQuery = {
id: number;
username: string;
profileImageUri?: string | null;
followers?: Array<{ __typename?: "UserGQL"; id: number }> | null;
};
}>;
}>;
@ -3283,6 +3284,7 @@ export type VideoCardFieldsFragment = {
id: number;
username: string;
profileImageUri?: string | null;
followers?: Array<{ __typename?: "UserGQL"; id: number }> | null;
};
}>;
};
@ -3356,6 +3358,7 @@ export type GetVideoFeedQuery = {
id: number;
username: string;
profileImageUri?: string | null;
followers?: Array<{ __typename?: "UserGQL"; id: number }> | null;
};
}>;
}>;
@ -5055,6 +5058,9 @@ export const VideoCardFieldsFragmentDoc = gql`
id
username
profileImageUri
followers {
id
}
}
reaction
}

View File

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