OBJECT
Event
Information about past or upcoming event
link GraphQL Schema definition
- type Event {
- # Unique identifier
- : Int!
- # Event start
- : String!
- # Event end
- : String!
- # Display name
- : String!
- # Is the event all day? If so, no time should be provided, if not, time is
- # required
- : Boolean!
- # Description before
- : String
- # Description after
- : String
- # Event display image
- : String
- # Link to a photo galery
- : String
- # Link to a video
- : String
- # Event leaders
- : [Member]!
- # Time of the registration start if the registration is open
- : String
- # Time of the registration end or null if the end is open
- : String
- # Maximum number of attendees for the event or null if not restricted
- : Int
- # Members attending the event
- : [EventAttendee]!
- # Articles related to the event
- : [Article]!
- }