OBJECT
FlightPermitMutation
Mutation to change flight permits.
link GraphQL Schema definition
- type FlightPermitMutation {
- # Requires access to resource GRAPHQL_FLIGHT_PERMITS_EDIT.
- # Requires access to given flight
- #
- # Arguments
- # flightNid: [Not documented]
- # permitType: [Not documented]
- # country: [Not documented]
- # permit: [Not documented]
- (
- : FlightNid!,
- : LegPermitType!,
- : CountryCode!,
- : LegPermitInput!
- ): LegPermit!
- # Requires access to resource GRAPHQL_FLIGHT_PERMITS_EDIT
- #
- # Arguments
- # legPermitNid: [Not documented]
- # permit: [Not documented]
- (
- : LegPermitNid!,
- : LegPermitInput!
- ): LegPermit!
- # Requires access to resource GRAPHQL_FLIGHT_PERMITS_EDIT
- #
- # Arguments
- # legPermitNid: [Not documented]
- (: LegPermitNid!): Boolean!
- # Requires access to resource LANDING_PERMITS_EDIT.
- # Requires access to given flight
- #
- # Arguments
- # flightNid: [Not documented]
- # landingPermitNids: [Not documented]
- # emailData: [Not documented]
- (
- : FlightNid!,
- : [LandingPermitNid!]!,
- : EmailInput!
- ): Boolean!
- # Requires access to resource LANDING_PERMITS_EDIT.
- # Requires access to given flight
- #
- # Arguments
- # flightNid: [Not documented]
- # landingPermitNid: [Not documented]
- # mailboxMessageNid: [Not documented]
- # isRead: [Not documented]
- (
- : FlightNid!,
- : LandingPermitNid!,
- : MailboxMessageNid!,
- : Boolean!
- ): Boolean!
- # Requires access to resource OVERFLIGHT_PERMITS_EDIT.
- # Requires access to given flight
- #
- # Arguments
- # flightNid: [Not documented]
- # overflightPermitNids: [Not documented]
- # emailData: [Not documented]
- (
- : FlightNid!,
- : [OverflightPermitNid!]!,
- : EmailInput!
- ): Boolean!
- # Requires access to resource OVERFLIGHT_PERMITS_EDIT.
- # Requires access to given flight
- #
- # Arguments
- # flightNid: [Not documented]
- # overflightPermitNid: [Not documented]
- # mailboxMessageNid: [Not documented]
- # isRead: [Not documented]
- (
- : FlightNid!,
- : OverflightPermitNid!,
- : MailboxMessageNid!,
- : Boolean!
- ): Boolean!
- # Requires access to resource OVERFLIGHT_PERMITS_EDIT.
- # Requires access to given flight
- #
- # Arguments
- # flightNid: [Not documented]
- # permitList: [Not documented]
- (
- : FlightNid!,
- : [FlightCountryPermitInput!]!
- ): [LegPermit!]!
- # Requires access to resource LANDING_PERMITS_EDIT.
- # Requires access to given flight
- #
- # Arguments
- # flightNid: [Not documented]
- # permitList: [Not documented]
- # routing: [Not documented]
- (
- : FlightNid!,
- : [FlightCountryPermitInput!]!,
- : String
- ): [LegPermit!]!
- }