OBJECT
AircraftMutation
link GraphQL Schema definition
- type AircraftMutation {
- # Requires access to given aircraft
- #
- # Arguments
- # acftNid: Aircraft numeric identifier
- # aircraft: [Not documented]
- (: Int!, : AircraftUpdate!): NonNullAircraftValueOrErrorList!
- # Requires access to resource GRAPHQL_MX_FLEET_EDIT.
- # Requires access to resource GRAPHQL_ACFT.
- # Requires access to given aircraft
- #
- # Arguments
- # aircraftNid: [Not documented]
- # tahTacData: [Not documented]
- (
- : AircraftNid!,
- : AircraftTahTacDataInput!
- ): Aircraft!
- # Requires access to resource GRAPHQL_ACFT_EDIT
- #
- # Arguments
- # aircraft: [Not documented]
- (: AircraftCreate!): NonNullAircraftValueOrErrorList!
- # Requires access to resource GRAPHQL_AIRCRAFT_DAY_NOTE_EDIT
- #
- # Arguments
- # aircraftNid: [Not documented]
- # dateInterval: [Not documented]
- # note: [Not documented]
- (
- : AircraftNid!,
- : DateIntervalInput!,
- : String!
- ): NonNullBooleanValueOrErrorList!
- # Requires access to resource GRAPHQL_AIRCRAFT_DAY_NOTE_EDIT
- #
- # Arguments
- # aircraftNid: [Not documented]
- # dateInterval: [Not documented]
- (
- : AircraftNid!,
- : DateIntervalInput!
- ): NonNullBooleanValueOrErrorList!
- # Requires access to resource GRAPHQL_ACFT_EDIT
- #
- # Arguments
- # aircraft:
- # externalId:
- (: AircraftNid!, : String!): AircraftMutationPutExternalIdOutput!
- # Requires access to resource GRAPHQL_ACFT_EDIT
- #
- # Arguments
- # aircraft:
- # passengerReservationBookingDesignator:
- # configurationVersion:
- # ssimDei3AircraftOwner:
- # ssimDei4CockpitCrewEmployer:
- # ssimDei5CabinCrewEmployer:
- (
- : AircraftNid!,
- : String!,
- : String!,
- : String!,
- : String!,
- : String!
- ): Boolean!
- }