OBJECT
TripQuery
Node for trip queries
link GraphQL Schema definition
- type TripQuery {
- # Find trips.
- # Requires access to resource GRAPHQL_SALES_BOOKINGS.
- # Requires access to resource GRAPHQL_FLIGHT
- #
- # Arguments
- # timeInterval: [Not documented]
- # aircraftList: [Not documented]
- # flightStatus: [Not documented]
- # isCnl: [Not documented]
- # clientsList: [Not documented]
- # assigneesList: [Not documented]
- # withUnassigned: [Not documented]
- # operatorBaseNid: [Not documented]
- # flightTypes: [Not documented]
- # tripTypes: [Not documented]
- (
- TimeIntervalInput!, :
- AircraftNid!], : [
- FlightStatus!], : [
- Boolean, :
- ClientNid!], : [
- ApiLoginNidScalar], : [
- Boolean, :
- BaseNid, :
- FlightType!], : [
- ScheduleTripType!] : [
- ): [Trip!]!
- # Find trips clients in time period.
- # Requires access to resource GRAPHQL_SALES_BOOKINGS
- #
- # Arguments
- # timeInterval: [Not documented]
- # aircraftList: [Not documented]
- # flightStatus: [Not documented]
- # operatorBaseNid: [Not documented]
- (
- TimeIntervalInput!, :
- AircraftNid!], : [
- FlightStatus!], : [
- BaseNid :
- ): [Client!]!
- # Trip history
- TripHistoryQuery! :
- # Requires access to resource GRAPHQL_FLIGHT
- #
- # Arguments
- # tripNid: [Not documented]
- TripNid!): Trip! ( :
- # Find trip quote numbers which contains the wildcard (min 3 chars).
- # Requires access to resource TRIP_QUOTE
- #
- # Arguments
- # wildcard: [Not documented]
- String!): [String!]! ( :
- # Requires access to resource GRAPHQL_FLIGHT
- #
- # Arguments
- # wildcard: [Not documented]
- String!): [Trip!]! ( :
- # Requires access to resource GRAPHQL_FLIGHT
- #
- # Arguments
- # tripNumber: [Not documented]
- TripNumber!): Trip! ( :
- }