added day

This commit is contained in:
2022-08-20 22:31:33 +02:00
parent 476816a5d9
commit 1844260aae
5 changed files with 11 additions and 1 deletions

View File

@@ -1,5 +1,8 @@
query GetUpcoming {
getUpcoming {
name
date {
day
}
}
}

View File

@@ -41,13 +41,16 @@ export type QueryRoot = {
export type GetUpcomingQueryVariables = Exact<{ [key: string]: never; }>;
export type GetUpcomingQuery = { __typename?: 'QueryRoot', getUpcoming: Array<{ __typename?: 'Event', name: string }> };
export type GetUpcomingQuery = { __typename?: 'QueryRoot', getUpcoming: Array<{ __typename?: 'Event', name: string, date: { __typename?: 'EventDate', day: number } }> };
export const GetUpcomingDocument = gql`
query GetUpcoming {
getUpcoming {
name
date {
day
}
}
}
`;