OBJECT
PairingMutationSection
link GraphQL Schema definition
- type PairingMutationSection {
- # Requires access to resource GRAPHQL_PAIRING_EDIT
- #
- # Arguments
- # pairing:
- # Possible violation list: IS_NOT_SOME_ERROR
- (: PairingMutationInput!): PairingMutationSectionCreateOutput!
- # Requires access to resource GRAPHQL_PAIRING_EDIT
- #
- # Arguments
- # pairingId:
- # Possible violation list: IS_NOT_SOME_ERROR
- # pairing:
- # Possible violation list: IS_NOT_SOME_ERROR
- (: PairingId!, : PairingMutationInput!): PairingMutationSectionUpdateOutput!
- # Requires access to resource GRAPHQL_PAIRING_EDIT
- #
- # Arguments
- # pairingId:
- # Possible violation list: IS_NOT_SOME_ERROR
- (: PairingId!): PairingMutationSectionRemoveOutput!
- # Requires access to resource GRAPHQL_PAIRING_EDIT
- #
- # Arguments
- # pairingId:
- # Possible violation list: IS_NOT_SOME_ERROR
- # operationalFlightList:
- # positioningList:
- # nonOperationalFlightList:
- # Possible violation list: IS_NOT_SOME_ERROR
- (
- : PairingId!,
- : [FlightNid!],
- : [DraftOrActualPositioningNidOptional!],
- : [FlightNid!]
- ): PairingMutationSectionAddActivitiesOutput!
- # Requires access to resource GRAPHQL_PAIRING_EDIT
- #
- # Arguments
- # pairingId:
- # Possible violation list: IS_NOT_SOME_ERROR
- # operationalFlightList:
- # nonOperationalFlightList:
- # positioningList:
- # Possible violation list: IS_NOT_SOME_ERROR
- (
- : PairingId!,
- : [FlightNid!],
- : [FlightNid!],
- : [DraftOrActualPositioningNidOptional!]
- ): PairingMutationSectionRemoveActivitiesOutput!
- # Requires access to resource GRAPHQL_PAIRING_CREW_EDIT.
- # Execution is not allowed during publishing.
- # If in drafts mode, requires operator to turn that feature on globally in
- # settings.
- #
- # Arguments
- # pairingId:
- # Possible violation list: IS_NOT_SOME_ERROR
- # crewMemberList:
- # Possible violation list:
- # TOO_FEW_ERROR,TOO_MANY_ERROR,NOT_EQUAL_COUNT_ERROR,NOT_DIVISIBLE_BY_ERROR
- # isInDraftMode:
- (
- : PairingId!,
- : [CrewMemberNid!]!,
- : Boolean!
- ): PairingMutationSectionRemoveCrewOutput!
- # Requires access to resource GRAPHQL_PAIRING_CREW_EDIT.
- # Execution is not allowed during publishing.
- # If in drafts mode, requires operator to turn that feature on globally in
- # settings.
- #
- # Arguments
- # pairingId:
- # Possible violation list: IS_NOT_SOME_ERROR
- # crewList:
- # isInDraftMode:
- (
- : PairingId!,
- : [PairingCrewInput!]!,
- : Boolean!
- ): PairingMutationSectionReplaceCrewOutput!
- # Requires access to resource GRAPHQL_PAIRING_CREW_EDIT.
- # Execution is not allowed during publishing.
- # If in drafts mode, requires operator to turn that feature on globally in
- # settings.
- #
- # Arguments
- # pairingId:
- # Possible violation list: IS_NOT_SOME_ERROR
- # isInDraftMode:
- (: PairingId!, : Boolean!): PairingMutationSectionClearCrewOutput!
- }