Compare commits
No commits in common. "5efd8ef8e53ada6f7c4ae161977a1b488fbf8e93" and "8fe20d1c417e188e4b1cb9a894ae11d1fe3545c6" have entirely different histories.
5efd8ef8e5
...
8fe20d1c41
@ -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
|
||||
}
|
||||
|
@ -5,6 +5,9 @@ fragment MedalFields on MedalGQL {
|
||||
|
||||
query getMedals($scope: MedalScope!, $userId: Int) {
|
||||
getMedals(scope: $scope, userId: $userId) {
|
||||
distanceOver66 {
|
||||
...MedalFields
|
||||
}
|
||||
distanceOver78 {
|
||||
...MedalFields
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user