OBJECT
GovlinkMutation
link GraphQL Schema definition
- type GovlinkMutation {
- # Requires access to given flight
- #
- # Arguments
- # flightNid: [Not documented]
- # processList: [Not documented]
- # overallStatus: [Not documented]
- (
- : FlightNid!,
- : [LegGovlinkProcessInput!]!,
- : String
- ): [LegGovlinkProcess!]!
- # Requires access to given flight
- #
- # Arguments
- # flightNid: [Not documented]
- (: FlightNid!): 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!,
- : GovLinkListInput!
- ): PutSanctionListOutput!
- # Delete assigned links.
- # Requires access to given flight
- #
- # Arguments
- # flightNid:
- # links:
- (
- : FlightNid!,
- : [String!]!
- ): DeleteSanctionListLinksOutput!
- }