OBJECT

FuelQuery

link GraphQL Schema definition

  • type FuelQuery {
  • # Requires access to given flight
  • #
  • # Arguments
  • # flightNid: [Not documented]
  • # fuelPriceNid: [Not documented]
  • # mailboxMessageNidList: [Not documented]
  • getFuelOrderMessages(
  • flightNid: FlightNid!,
  • fuelPriceNid: FuelPriceNid!,
  • mailboxMessageNidList: [MailboxMessageNid!]
  • ): [MailboxMessage!]!
  • # Get all fuel prices assigned to flight.
  • # Requires access to resource GRAPHQL_FUEL_SEE.
  • # Requires access to given flight
  • #
  • # Arguments
  • # flightNid:
  • getAssignedFuelPrices(flightNid: FlightNid!): FuelFlightPricesOutput!
  • # Get all possible fuel prices for locations. Also return all assigned fuel prices
  • # to flight if flightNid is passed.
  • # Requires access to resource GRAPHQL_FUEL_SEE.
  • # Requires access to given flight
  • #
  • # Arguments
  • # departure:
  • # destination:
  • # fuelPriceType:
  • # isCommercial:
  • # flightNid:
  • getPossibleFuelPrices(
  • departure: AirportCodeScalar!,
  • destination: AirportCodeScalar!,
  • fuelPriceType: FuelPriceType!,
  • isCommercial: Boolean,
  • flightNid: FlightNid
  • ): FuelFlightPricesOutput!
  • }