TravelSetup
Defines the settings for travel for an event in EventsAir.
type TravelSetup {
localPorts(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [Port!]!
sectors(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [Sector!]!
travelTypes(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [TravelType!]!
}
Fields
TravelSetup.localPorts ● [Port!]! non-null object
A list of local ports associated with this event.
Optionally, the offset and limit arguments can be used to page through multiple items:
offsetmust be a non-negative integer (defaults to0).limitmust be a positive integer from1to2000(defaults to100).
TravelSetup.localPorts.limit ● PaginationLimit! non-null scalar
TravelSetup.localPorts.offset ● NonNegativeInt! non-null scalar
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:
offsetmust be a non-negative integer (defaults to0).limitmust be a positive integer from1to2000(defaults to100).
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:
offsetmust be a non-negative integer (defaults to0).limitmust be a positive integer from1to2000(defaults to100).
TravelSetup.travelTypes.limit ● PaginationLimit! non-null scalar
TravelSetup.travelTypes.offset ● NonNegativeInt! non-null scalar
Member Of
EventSetup object