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]
  • bookingsTripList(
  • timeInterval: TimeIntervalInput!,
  • aircraftList: [AircraftNid!],
  • flightStatus: [FlightStatus!],
  • isCnl: Boolean,
  • clientsList: [ClientNid!],
  • assigneesList: [ApiLoginNidScalar],
  • withUnassigned: Boolean,
  • operatorBaseNid: BaseNid,
  • flightTypes: [FlightType!],
  • tripTypes: [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]
  • getTripsClientsList(
  • timeInterval: TimeIntervalInput!,
  • aircraftList: [AircraftNid!],
  • flightStatus: [FlightStatus!],
  • operatorBaseNid: BaseNid
  • ): [Client!]!
  • # Trip history
  • history: TripHistoryQuery!
  • # Requires access to resource GRAPHQL_FLIGHT
  • #
  • # Arguments
  • # tripNid: [Not documented]
  • getTrip(tripNid: TripNid!): Trip!
  • # Find trip quote numbers which contains the wildcard (min 3 chars).
  • # Requires access to resource TRIP_QUOTE
  • #
  • # Arguments
  • # wildcard: [Not documented]
  • findTripQuoteByWildcard(wildcard: String!): [String!]!
  • # Requires access to resource GRAPHQL_FLIGHT
  • #
  • # Arguments
  • # wildcard: [Not documented]
  • findTripByWildcard(wildcard: String!): [Trip!]!
  • # Requires access to resource GRAPHQL_FLIGHT
  • #
  • # Arguments
  • # tripNumber: [Not documented]
  • getTripByTripNumber(tripNumber: TripNumber!): Trip!
  • }