improve event organizer selection, show on web

This commit is contained in:
2024-06-10 03:06:26 +02:00
parent 2f3b359d9d
commit f7debf565d
17 changed files with 292 additions and 16 deletions

View File

@ -17,6 +17,7 @@ export type {
EventFragment,
EventCategory,
EventOccurrence,
EventOrganizer,
} from "@/gql/graphql";
export type SingularEvent = EventFragment & {
@ -71,6 +72,17 @@ const EventFragmentDefinition = graphql(`
}
}
}
organizers {
... on EventOrganizer {
name
externalUrl
association {
... on AssociationPage {
url
}
}
}
}
}
`);