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 {
additionalCharges: [AdditionalCharge!]!
checklist: [ChecklistItem!]!
documentTypes: [DocumentType!]!
preferences: ExhibitionPreferences!
standTypes: [ExhibitionStandType!]!
stands(
input: ExhibitionStandSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [ExhibitionStand!]!
}

Fields

ExhibitionSetup.additionalCharges ● [AdditionalCharge!]! non-null object

The list of available additional charges for the exhibition.

ExhibitionSetup.checklist ● [ChecklistItem!]! non-null object

The list of checklist items for exhibition.

ExhibitionSetup.documentTypes ● [DocumentType!]! non-null interface

The types of documents defined for an exhibition booking.

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.

See ExhibitionStandSearchFilterInput for details on how the optional input argument can be used to filter stands.

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.input ● ExhibitionStandSearchFilterInput! non-null input
ExhibitionSetup.stands.limit ● PaginationLimit! non-null scalar
ExhibitionSetup.stands.offset ● NonNegativeInt! non-null scalar

Member Of

EventSetup object