added day
This commit is contained in:
@@ -1,5 +1,8 @@
|
||||
query GetUpcoming {
|
||||
getUpcoming {
|
||||
name
|
||||
date {
|
||||
day
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
Reference in New Issue
Block a user