Skip to content

Commit

Permalink
added "AGE" to the graphql schema ...
Browse files Browse the repository at this point in the history
  • Loading branch information
bandinopla committed Jul 30, 2024
1 parent 167562e commit 78d0ad9
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 @@ -964,6 +964,7 @@ export type RoleDescriptor = {
export type SbdStat = {
__typename?: 'SBDStat';
graph?: Maybe<Array<Scalars['SBDSlot']>>;
graphAge?: Maybe<Array<Maybe<Scalars['SBDSlot']>>>;
wclass: WeightClass;
};

Expand Down Expand Up @@ -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<any> | 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<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 @@ -2146,6 +2147,7 @@ export const GetSbdStatsDocument = gql`
male
}
graph
graphAge
}
}
}
Expand Down

0 comments on commit 78d0ad9

Please sign in to comment.