Skip to main content

TravelSetup

Defines the settings for travel for an event in EventsAir.

type TravelSetup {
sectors(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [Sector!]!
travelTypes(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [TravelType!]!
}

Fields

TravelSetup.sectors ● [Sector!]! non-null object

A list of sectors associated with this 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).
TravelSetup.sectors.limit ● PaginationLimit! non-null scalar
TravelSetup.sectors.offset ● NonNegativeInt! non-null scalar

TravelSetup.travelTypes ● [TravelType!]! non-null object

A list of travel types associated with this 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).
TravelSetup.travelTypes.limit ● PaginationLimit! non-null scalar
TravelSetup.travelTypes.offset ● NonNegativeInt! non-null scalar

Member Of

EventSetup object