Skip to main content

ExhibitionSetup

Defines the setup for Exhibitions within EventsAir.

Exhibitions have multiple aspects to them:

  • Event organizers can configure several aspects of the exhibition, like different stand types, actual stands, and their placement on the floor plan.
  • Exhibitors can review the floor plan and book their stands.
  • Attendees can use the event website and/or the attendee app to plan which stands they will visit.
type ExhibitionSetup {
preferences: ExhibitionPreferences!
standTypes: [ExhibitionStandType!]!
stands(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [ExhibitionStand!]!
}

Fields

ExhibitionSetup.preferences ● ExhibitionPreferences! non-null object

The exhibition preferences as set by the event organizer.

ExhibitionSetup.standTypes ● [ExhibitionStandType!]! non-null object

The different types of stands available for booking during the event.

ExhibitionSetup.stands ● [ExhibitionStand!]! non-null object

The different stands available for booking during the event.

Optionally, the offset and limit arguments can be used to page through multiple items:

  • offset must be a non-negative integer (defaults to 0).
  • limit must be a positive integer from 1 to 2000 (defaults to 100).
ExhibitionSetup.stands.limit ● PaginationLimit! non-null scalar
ExhibitionSetup.stands.offset ● NonNegativeInt! non-null scalar

Member Of

EventSetup object