OBJECT
JourneyLogFuelDeliveryMutation
link GraphQL Schema definition
- type JourneyLogFuelDeliveryMutation {
- # Upload a fuel delivery attachment for a flight. Flight must have a Journey Log.
- # Field FUEL_DELIVERY_ATTACHMENT must be enabled for the operator..
- # Requires access to resource GRAPHQL_JOURNEY_LOG_FUEL_DELIVERY_ATTACHMENT_EDIT.
- # Requires access to given flight
- #
- # Arguments
- # flightNid:
- # file:
- (: FlightNid!, : Upload!): NonNullBooleanValueOrErrorList!
- # Replace all fuel delivery attachments for a flight. Existing files are removed
- # before new files are stored..
- # Requires access to resource GRAPHQL_JOURNEY_LOG_FUEL_DELIVERY_ATTACHMENT_EDIT.
- # Requires access to given flight
- #
- # Arguments
- # flightNid:
- # fileList:
- (
- : FlightNid!,
- : [Upload!]!
- ): NonNullBooleanValueOrErrorList!
- # Remove all fuel delivery attachments for a flight..
- # Requires access to resource GRAPHQL_JOURNEY_LOG_FUEL_DELIVERY_ATTACHMENT_EDIT.
- # Requires access to given flight
- #
- # Arguments
- # flightNid:
- (: FlightNid!): NonNullBooleanValueOrErrorList!
- }