OBJECT
FuelQuery
link GraphQL Schema definition
- type FuelQuery {
- # Requires access to given flight
- #
- # Arguments
- # flightNid: [Not documented]
- # fuelPriceNid: [Not documented]
- # mailboxMessageNidList: [Not documented]
- (
- : FlightNid!,
- : FuelPriceNid!,
- : [MailboxMessageNid!]
- ): [MailboxMessage!]!
- # Get all fuel prices assigned to flight.
- # Requires access to resource GRAPHQL_FUEL_SEE.
- # Requires access to given flight
- #
- # Arguments
- # 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:
- # aircraftNid:
- (
- : AirportCodeScalar!,
- : AirportCodeScalar!,
- : FuelPriceType!,
- : Boolean,
- : FlightNid,
- : AircraftNid
- ): FuelFlightPricesOutput! @deprecated( reason: "Please use FlightFuelPricesMutation instead, as this query also mutates data (performs an update), which aligns more with mutation part." )
- # Calculate fuel index using selected fuel formula from general settings.
- # Requires access to resource GRAPHQL_FUEL_SEE
- #
- # Arguments
- # referenceFuelPrice:
- # amount:
- (: Float!, : Float!): Float!
- }