OBJECT

PnrGoMutation

link GraphQL Schema definition

  • type PnrGoMutation {
  • # Requires access to given flight
  • #
  • # Arguments
  • # flightNid: [Not documented]
  • # processList: [Not documented]
  • # overallStatus: [Not documented]
  • setPnrGoProcessList(
  • flightNid: FlightNid!,
  • processList: [LegPnrGoProcessInput!]!,
  • overallStatus: String
  • ): [LegPnrGoProcess!]!
  • # Requires access to given flight
  • #
  • # Arguments
  • # flightNid: [Not documented]
  • clearPnrGoProcessList(flightNid: FlightNid!): Boolean!
  • # Requires access to given flight
  • #
  • # Arguments
  • # flightNid: [Not documented]
  • # confirmationCode: [Not documented]
  • setEapisConfirmationCode(
  • flightNid: FlightNid!,
  • confirmationCode: String!
  • ): Boolean!
  • # Requires access to given flight
  • #
  • # Arguments
  • # flightNid:
  • # links:
  • # Possible violation list: LINK_HTTPS_ERROR
  • setEapisLinks(
  • flightNid: FlightNid!,
  • links: [ChecklistItemLinkInput!]!
  • ): Boolean!
  • # If item is not on flight it will be added.
  • # Requires access to given flight
  • #
  • # Arguments
  • # flightNid:
  • # sanctionList:
  • # Possible violation list: IS_NOT_SOME_ERROR,LINK_HTTPS_ERROR
  • putSanctionList(
  • flightNid: FlightNid!,
  • sanctionList: PnrGoSanctionListInput!
  • ): PutSanctionListOutput!
  • # Delete assigned links.
  • # Requires access to given flight
  • #
  • # Arguments
  • # flightNid:
  • # links:
  • deleteSanctionListLinks(
  • flightNid: FlightNid!,
  • links: [String!]!
  • ): DeleteSanctionListLinksOutput!
  • }