This commit is contained in:
@@ -4,6 +4,7 @@ query GetUpcoming {
|
||||
date {
|
||||
day
|
||||
hour
|
||||
month
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user