generated graphql
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-08-21 00:44:36 +02:00
parent cf1c041db5
commit 5238404e28
4 changed files with 12 additions and 8 deletions

View File

@@ -4,6 +4,7 @@ query GetUpcoming {
date {
day
hour
month
}
}
}

View File

@@ -51,7 +51,12 @@ export type GetUpcomingQuery = {
getUpcoming: Array<{
__typename?: "Event";
name: string;
date: { __typename?: "EventDate"; day: number; hour: number };
date: {
__typename?: "EventDate";
day: number;
hour: number;
month: number;
};
}>;
};
@@ -62,6 +67,7 @@ export const GetUpcomingDocument = gql`
date {
day
hour
month
}
}
}