OBJECT

FlightSupportFlightServiceFilesMutation

link GraphQL Schema definition

  • type FlightSupportFlightServiceFilesMutation {
  • # Upload file list for flight support service on flight. Service has to be related
  • # to checklist item..
  • # Requires access to resource INTEGRATION_FLIGHT_SUPPORT
  • #
  • # Arguments
  • # flightNid:
  • # service:
  • # fileList:
  • uploadFlightServiceFiles(
  • flightNid: FlightSupportFlightNid!,
  • service: FlightSupportServiceEnum!,
  • fileList: [Upload!]!
  • ): Boolean!
  • # Remove all flight support service files uploaded on flight.
  • # Requires access to resource INTEGRATION_FLIGHT_SUPPORT
  • #
  • # Arguments
  • # flightNid:
  • # service:
  • removeAllFlightServiceFiles(
  • flightNid: FlightSupportFlightNid!,
  • service: FlightSupportServiceEnum!
  • ): Boolean!
  • # Upload new file list for flight support service on flight and override old one.
  • # Service has to be related to checklist item..
  • # Requires access to resource INTEGRATION_FLIGHT_SUPPORT
  • #
  • # Arguments
  • # flightNid:
  • # service:
  • # fileList:
  • overrideFlightServiceFiles(
  • flightNid: FlightSupportFlightNid!,
  • service: FlightSupportServiceEnum!,
  • fileList: [Upload!]!
  • ): Boolean!
  • }