From 78d0ad9775dfc89ab0568e65bc8a3a1f640bc3e9 Mon Sep 17 00:00:00 2001 From: bandinopla <71508858+bandinopla@users.noreply.github.com> Date: Tue, 30 Jul 2024 16:25:41 +0000 Subject: [PATCH] added "AGE" to the graphql schema ... --- src/data/generated---db-types-and-hooks.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/data/generated---db-types-and-hooks.tsx b/src/data/generated---db-types-and-hooks.tsx index 1f8d5c2..c60793a 100644 --- a/src/data/generated---db-types-and-hooks.tsx +++ b/src/data/generated---db-types-and-hooks.tsx @@ -964,6 +964,7 @@ export type RoleDescriptor = { export type SbdStat = { __typename?: 'SBDStat'; graph?: Maybe>; + graphAge?: Maybe>>; wclass: WeightClass; }; @@ -1248,7 +1249,7 @@ export type GetOfficialExercisesQuery = { __typename?: 'Query', officialExercise export type GetSbdStatsQueryVariables = Exact<{ [key: string]: never; }>; -export type GetSbdStatsQuery = { __typename?: 'Query', sbdStats?: { __typename?: 'SBDStats', total: number, date: string, perclass?: Array<{ __typename?: 'SBDStat', graph?: Array | null, wclass: { __typename?: 'WeightClass', name: string, max: number, min: number, male: boolean } } | null> | null } | null }; +export type GetSbdStatsQuery = { __typename?: 'Query', sbdStats?: { __typename?: 'SBDStats', total: number, date: string, perclass?: Array<{ __typename?: 'SBDStat', graph?: Array | null, graphAge?: Array | null, wclass: { __typename?: 'WeightClass', name: string, max: number, min: number, male: boolean } } | null> | null } | null }; export type GetCommunityStatsQueryVariables = Exact<{ etype: Scalars['String']; @@ -2146,6 +2147,7 @@ export const GetSbdStatsDocument = gql` male } graph + graphAge } } }