TravelSetup
Defines the settings for travel for an event in EventsAir.
type TravelSetup {
localPorts(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [Port!]!
preferences: TravelPreferences!
sectors(
input: SectorSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [Sector!]!
travelTypes(
input: TravelTypeSearchFilterInput! = [object Object]
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.preferences ● TravelPreferences! non-null object
The configuration preferences for travel.
TravelSetup.sectors ● [Sector!]! non-null object
A list of sectors associated with this event.
See SectorSearchFilterInput
for details on how the optional input argument can be used to filter sectors.
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.input ● SectorSearchFilterInput! non-null input
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.
See TravelTypeSearchFilterInput
for details on how the optional input argument can be used to filter travel types.
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.input ● TravelTypeSearchFilterInput! non-null input
TravelSetup.travelTypes.limit ● PaginationLimit! non-null scalar
TravelSetup.travelTypes.offset ● NonNegativeInt! non-null scalar
Member Of
EventSetup object