OBJECT

IntegrationChecklistMutation

link GraphQL Schema definition

  • type IntegrationChecklistMutation {
  • # Will add item to checklist if not present.
  • # Requires access to resource GRAPHQL_CHECKLIST_ITEM_AIRPORT_BRIEF_EDIT.
  • # Requires access to given flight
  • #
  • # Arguments
  • # flightNid:
  • # checklistStatusId:
  • # Possible violation list: IS_NOT_SOME_ERROR
  • changeAirportBriefStatus(
  • flightNid: FlightNid!,
  • checklistStatusId: ChecklistStatusId!
  • ): IntegrationChecklistMutationChangeAirportBriefStatusOutput!
  • # Will add item to checklist if not present.
  • # Requires access to resource GRAPHQL_CHECKLIST_ITEM_AIRPORT_BRIEF_EDIT.
  • # Requires access to given flight
  • #
  • # Arguments
  • # flightNid:
  • # note:
  • changeAirportBriefNote(
  • flightNid: FlightNid!,
  • note: String!
  • ): Boolean!
  • # Will add item to checklist if not present.
  • # Requires access to resource GRAPHQL_CHECKLIST_ITEM_AIRPORT_BRIEF_EDIT.
  • # Requires access to given flight
  • #
  • # Arguments
  • # flightNid:
  • # files:
  • uploadAirportBriefFiles(
  • flightNid: FlightNid!,
  • files: [ChecklistFileType!]!
  • ): Boolean!
  • # Requires access to resource GRAPHQL_CHECKLIST_ITEM_AIRPORT_BRIEF_EDIT.
  • # Requires access to given flight
  • #
  • # Arguments
  • # flightNid:
  • # files: Files names to delete
  • deleteAirportBriefFiles(
  • flightNid: FlightNid!,
  • files: [String!]!
  • ): Boolean!
  • }