OBJECT

Event

Information about past or upcoming event

link GraphQL Schema definition

  • type Event {
  • # Unique identifier
  • id: Int!
  • # Event start
  • from: String!
  • # Event end
  • to: String!
  • # Display name
  • title: String!
  • # Is the event all day? If so, no time should be provided, if not, time is
  • # required
  • allDay: Boolean!
  • # Description before
  • descriptionBefore: String
  • # Description after
  • descriptionAfter: String
  • # Event display image
  • imageBefore: String
  • # Link to a photo galery
  • linkPhoto: String
  • # Link to a video
  • linkVideo: String
  • # Event leaders
  • leaders: [Member]!
  • # Time of the registration start if the registration is open
  • registrationStart: String
  • # Time of the registration end or null if the end is open
  • registrationEnd: String
  • # Maximum number of attendees for the event or null if not restricted
  • maxAttendees: Int
  • # Members attending the event
  • attendees: [EventAttendee]!
  • # Articles related to the event
  • articles: [Article]!
  • }