OBJECT
IntegrationChecklistMutation
link GraphQL Schema definition
- type IntegrationChecklistMutation {
- # Will add item to checklist if not present.
- # Requires access to resource GRAPHQL_CHECKLIST_ITEM_AIRPORT_BRIEF_EDIT.
- # Requires access to given flight
- #
- # Arguments
- # flightNid:
- # checklistStatusId:
- # Possible violation list: IS_NOT_SOME_ERROR
- (
- FlightNid!, :
- ChecklistStatusId! :
- ): IntegrationChecklistMutationChangeAirportBriefStatusOutput!
- # Will add item to checklist if not present.
- # Requires access to resource GRAPHQL_CHECKLIST_ITEM_AIRPORT_BRIEF_EDIT.
- # Requires access to given flight
- #
- # Arguments
- # flightNid:
- # note:
- (
- FlightNid!, :
- String! :
- ): Boolean!
- # Will add item to checklist if not present.
- # Requires access to resource GRAPHQL_CHECKLIST_ITEM_AIRPORT_BRIEF_EDIT.
- # Requires access to given flight
- #
- # Arguments
- # flightNid:
- # files:
- (
- FlightNid!, :
- ChecklistFileType!]! : [
- ): Boolean!
- # Requires access to resource GRAPHQL_CHECKLIST_ITEM_AIRPORT_BRIEF_EDIT.
- # Requires access to given flight
- #
- # Arguments
- # flightNid:
- # files: Files names to delete
- (
- FlightNid!, :
- String!]! : [
- ): Boolean!
- }