Compare commits

..

No commits in common. "5efd8ef8e53ada6f7c4ae161977a1b488fbf8e93" and "8fe20d1c417e188e4b1cb9a894ae11d1fe3545c6" have entirely different histories.

2 changed files with 11 additions and 0 deletions

View File

@ -3046,6 +3046,11 @@ export type GetMedalsQuery = {
__typename?: "Query";
getMedals: {
__typename?: "RequestedMedalsGQL";
distanceOver66?: {
__typename?: "MedalGQL";
count: number;
nickname?: string | null;
} | null;
distanceOver78?: {
__typename?: "MedalGQL";
count: number;
@ -4977,6 +4982,9 @@ export type GetVideoMakePercentageIntervalsQueryResult = Apollo.QueryResult<
export const GetMedalsDocument = gql`
query getMedals($scope: MedalScope!, $userId: Int) {
getMedals(scope: $scope, userId: $userId) {
distanceOver66 {
...MedalFields
}
distanceOver78 {
...MedalFields
}

View File

@ -5,6 +5,9 @@ fragment MedalFields on MedalGQL {
query getMedals($scope: MedalScope!, $userId: Int) {
getMedals(scope: $scope, userId: $userId) {
distanceOver66 {
...MedalFields
}
distanceOver78 {
...MedalFields
}