Skip to content

Commit

Permalink
forgot to ask for ageClasses...
Browse files Browse the repository at this point in the history
  • Loading branch information
bandinopla committed Jul 30, 2024
1 parent 78d0ad9 commit deb553f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/data/generated---db-types-and-hooks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -970,6 +970,7 @@ export type SbdStat = {

export type SbdStats = {
__typename?: 'SBDStats';
ageClasses?: Maybe<Array<Maybe<Scalars['String']>>>;
date: Scalars['String'];
perclass?: Maybe<Array<Maybe<SbdStat>>>;
total: Scalars['Int'];
Expand Down Expand Up @@ -1249,7 +1250,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<any> | null, graphAge?: Array<any | null> | 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, ageClasses?: Array<string | null> | null, perclass?: Array<{ __typename?: 'SBDStat', graph?: Array<any> | null, graphAge?: Array<any | null> | null, wclass: { __typename?: 'WeightClass', name: string, max: number, min: number, male: boolean } } | null> | null } | null };

export type GetCommunityStatsQueryVariables = Exact<{
etype: Scalars['String'];
Expand Down Expand Up @@ -2149,6 +2150,7 @@ export const GetSbdStatsDocument = gql`
graph
graphAge
}
ageClasses
}
}
`;
Expand Down

0 comments on commit deb553f

Please sign in to comment.