From 6ad3d449d81659a266611b34e8bc400ac10cb6b4 Mon Sep 17 00:00:00 2001 From: Loewy Date: Wed, 4 Dec 2024 13:59:51 -0800 Subject: [PATCH] remove distance 60 from operation --- src/index.tsx | 8 -------- src/operations/medals.gql | 3 --- 2 files changed, 11 deletions(-) diff --git a/src/index.tsx b/src/index.tsx index 066b8be..0e4b318 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -3046,11 +3046,6 @@ export type GetMedalsQuery = { __typename?: "Query"; getMedals: { __typename?: "RequestedMedalsGQL"; - distanceOver66?: { - __typename?: "MedalGQL"; - count: number; - nickname?: string | null; - } | null; distanceOver78?: { __typename?: "MedalGQL"; count: number; @@ -4982,9 +4977,6 @@ export type GetVideoMakePercentageIntervalsQueryResult = Apollo.QueryResult< export const GetMedalsDocument = gql` query getMedals($scope: MedalScope!, $userId: Int) { getMedals(scope: $scope, userId: $userId) { - distanceOver66 { - ...MedalFields - } distanceOver78 { ...MedalFields } diff --git a/src/operations/medals.gql b/src/operations/medals.gql index 5645148..89caea6 100644 --- a/src/operations/medals.gql +++ b/src/operations/medals.gql @@ -5,9 +5,6 @@ fragment MedalFields on MedalGQL { query getMedals($scope: MedalScope!, $userId: Int) { getMedals(scope: $scope, userId: $userId) { - distanceOver66 { - ...MedalFields - } distanceOver78 { ...MedalFields }