OBJECT
PnrGoMutation
link GraphQL Schema definition
- type PnrGoMutation {
- # Requires access to given flight
- #
- # Arguments
- # flightNid: [Not documented]
- # processList: [Not documented]
- # overallStatus: [Not documented]
- (
- : FlightNid!,
- : [LegPnrGoProcessInput!]!,
- : String
- ): [LegPnrGoProcess!]!
- # Requires access to given flight
- #
- # Arguments
- # flightNid: [Not documented]
- (: FlightNid!): Boolean!
- # Requires access to given flight
- #
- # Arguments
- # flightNid: [Not documented]
- # confirmationCode: [Not documented]
- (
- : FlightNid!,
- : String!
- ): Boolean!
- # Requires access to given flight
- #
- # Arguments
- # flightNid:
- # links:
- # Possible violation list: LINK_HTTPS_ERROR
- (
- : FlightNid!,
- : [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
- (
- : FlightNid!,
- : PnrGoSanctionListInput!
- ): PutSanctionListOutput!
- # Delete assigned links.
- # Requires access to given flight
- #
- # Arguments
- # flightNid:
- # links:
- (
- : FlightNid!,
- : [String!]!
- ): DeleteSanctionListLinksOutput!
- # Set checklist item status to MANUAL_OK for PnrGO integration.
- # Requires access to given flight
- #
- # Arguments
- # flightNid:
- (: FlightNid!): Boolean!
- # Upload files to the PnrGO checklist item. Will add item to checklist if not
- # present.
- # Requires access to given flight
- #
- # Arguments
- # flightNid:
- # files:
- (
- : FlightNid!,
- : [ChecklistFileType!]!
- ): [FileSimple!]!
- # Delete files from the PnrGO checklist item by file names.
- # Requires access to given flight
- #
- # Arguments
- # flightNid:
- # files: Files names to delete
- (
- : FlightNid!,
- : [String!]!
- ): Boolean!
- }