OBJECT

ChecklistMutation

Node for checklist mutation

link GraphQL Schema definition

  • type ChecklistMutation {
  • # Restore archived checklist.
  • # Requires access to resource GRAPHQL_CHECKLIST_EDIT.
  • # Requires access to given flight
  • #
  • # Arguments
  • # flightNid: [Not documented]
  • restoreArchived(flightNid: FlightNid!): Boolean
  • # Requires access to resource GRAPHQL_CHECKLIST_OPS_EDIT.
  • # Requires access to given flight
  • #
  • # Arguments
  • # flightNid: [Not documented]
  • # checklistItems: [Not documented]
  • addOrUpdateOpsItems(
  • flightNid: FlightNid!,
  • checklistItems: [ChecklistItemInput!]!
  • ): Boolean
  • # Requires access to resource GRAPHQL_CHECKLIST_SALES_EDIT.
  • # Requires access to given flight
  • #
  • # Arguments
  • # flightNid: [Not documented]
  • # checklistItems: [Not documented]
  • addOrUpdateSalesItems(
  • flightNid: FlightNid!,
  • checklistItems: [ChecklistItemInput!]!
  • ): Boolean
  • # Requires access to resource GRAPHQL_CHECKLIST_SALES_EDIT.
  • # Requires access to given flight
  • #
  • # Arguments
  • # flightNid: [Not documented]
  • # checklistItems: [Not documented]
  • removeOpsItems(
  • flightNid: FlightNid!,
  • checklistItems: [ChecklistDefinitionNid!]!
  • ): Boolean
  • # Requires access to resource GRAPHQL_CHECKLIST_SALES_EDIT.
  • # Requires access to given flight
  • #
  • # Arguments
  • # flightNid: [Not documented]
  • # checklistItems: [Not documented]
  • removeSalesItems(
  • flightNid: FlightNid!,
  • checklistItems: [ChecklistDefinitionNid!]!
  • ): Boolean
  • # Update OPS checklist item status.
  • # Requires access to resource GRAPHQL_CHECKLIST_OPS_EDIT.
  • # Requires access to given flight
  • #
  • # Arguments
  • # flightNid: [Not documented]
  • # checklistItemNid: [Not documented]
  • # checklistStatusId: [Not documented]
  • opsItemStatusUpdate(
  • flightNid: FlightNid!,
  • checklistItemNid: ChecklistDefinitionNid!,
  • checklistStatusId: String!
  • ): Boolean
  • # Update SALES checklist item status.
  • # Requires access to resource GRAPHQL_CHECKLIST_SALES_EDIT.
  • # Requires access to given flight
  • #
  • # Arguments
  • # flightNid: [Not documented]
  • # checklistItemNid: [Not documented]
  • # checklistStatusId: [Not documented]
  • salesItemStatusUpdate(
  • flightNid: FlightNid!,
  • checklistItemNid: ChecklistDefinitionNid!,
  • checklistStatusId: String!
  • ): Boolean
  • # Update positioning checklist item status.
  • # Requires access to resource GRAPHQL_POSITIONING_EDIT
  • #
  • # Arguments
  • # positioningNid: [Not documented]
  • # checklistItemNid: [Not documented]
  • # checklistStatusId: [Not documented]
  • positioningItemStatusUpdate(
  • positioningNid: PositioningNid!,
  • checklistItemNid: ChecklistDefinitionNid!,
  • checklistStatusId: String!
  • ): Boolean
  • # Update SALES flight brief checklist item status to sent for quote realization
  • # legs.
  • # Requires access to resource GRAPHQL_CHECKLIST_SALES_EDIT.
  • # Requires access to resource GRAPHQL_SALES_QUOTE_REQUEST_SEE
  • #
  • # Arguments
  • # quoteRealizationLegNids: [Not documented]
  • salesSetFlightBriefSentForQuoteLegs(
  • quoteRealizationLegNids: [QuoteRealizationLegNid!]!
  • ): [QuoteRealizationLeg!]!
  • # Update SALES checklist item status for quote realization leg.
  • # Requires access to resource GRAPHQL_CHECKLIST_SALES_EDIT
  • #
  • # Arguments
  • # quoteRealizationLegNid: [Not documented]
  • # checklistItemNid: [Not documented]
  • # checklistStatusId: [Not documented]
  • salesItemStatusUpdateForQuoteLeg(
  • quoteRealizationLegNid: QuoteRealizationLegNid!,
  • checklistItemNid: ChecklistDefinitionNid!,
  • checklistStatusId: String!
  • ): Boolean!
  • # Create SALES checklist item for quote realization leg.
  • # Requires access to resource GRAPHQL_CHECKLIST_SALES_EDIT
  • #
  • # Arguments
  • # quoteRealizationLegNid: [Not documented]
  • # checklistItemNid: [Not documented]
  • salesItemCreateForQuoteLeg(
  • quoteRealizationLegNid: QuoteRealizationLegNid!,
  • checklistItemNid: ChecklistDefinitionNid!
  • ): Boolean!
  • # Requires access to resource GRAPHQL_CHECKLIST_OPS_EDIT
  • #
  • # Arguments
  • # checklistNid: [Not documented]
  • # checklistItems: [Not documented]
  • updateOpsItems(
  • checklistNid: ChecklistNid!,
  • checklistItems: [ChecklistItemInput!]!
  • ): Boolean
  • # Requires access to resource GRAPHQL_CHECKLIST_SALES_EDIT
  • #
  • # Arguments
  • # checklistNid: [Not documented]
  • # checklistItems: [Not documented]
  • updateSalesItems(
  • checklistNid: ChecklistNid!,
  • checklistItems: [ChecklistItemInput!]!
  • ): Boolean
  • # Requires access to resource GRAPHQL_CHECKLIST_SALES_EDIT
  • #
  • # Arguments
  • # checklistNid: [Not documented]
  • # checklistDefinition: [Not documented]
  • # files: [Not documented]
  • addFilesToSalesItem(
  • checklistNid: ChecklistNid!,
  • checklistDefinition: ChecklistDefinitionNid!,
  • files: [ChecklistFileType!]!
  • ): [File!]!
  • # Requires access to resource GRAPHQL_CHECKLIST_OPS_EDIT
  • #
  • # Arguments
  • # checklistNid: [Not documented]
  • # checklistDefinition: [Not documented]
  • # files: [Not documented]
  • addFilesToOpsItem(
  • checklistNid: ChecklistNid!,
  • checklistDefinition: ChecklistDefinitionNid!,
  • files: [ChecklistFileType!]!
  • ): [File!]!
  • # Update OPS checklist item note.
  • # Requires access to resource GRAPHQL_CHECKLIST_OPS_EDIT.
  • # Requires access to given flight
  • #
  • # Arguments
  • # flightNid: [Not documented]
  • # checklistItemNid: [Not documented]
  • # note: [Not documented]
  • opsItemNoteUpdate(
  • flightNid: FlightNid!,
  • checklistItemNid: ChecklistDefinitionNid!,
  • note: String
  • ): Boolean
  • # Update SALES checklist item note.
  • # Requires access to resource GRAPHQL_CHECKLIST_SALES_EDIT.
  • # Requires access to given flight
  • #
  • # Arguments
  • # flightNid: [Not documented]
  • # checklistItemNid: [Not documented]
  • # note: [Not documented]
  • salesItemNoteUpdate(
  • flightNid: FlightNid!,
  • checklistItemNid: ChecklistDefinitionNid!,
  • note: String
  • ): Boolean
  • # Update SALES checklist item note for quote realization leg.
  • # Requires access to resource GRAPHQL_CHECKLIST_OPS_EDIT
  • #
  • # Arguments
  • # quoteRealizationLegNid: [Not documented]
  • # checklistItemNid: [Not documented]
  • # note: [Not documented]
  • salesItemNoteUpdateForQuoteLeg(
  • quoteRealizationLegNid: QuoteRealizationLegNid!,
  • checklistItemNid: ChecklistDefinitionNid!,
  • note: String
  • ): Boolean
  • # Will add Fuel release item to checklist if not present.
  • # Requires access to resource GRAPHQL_UPLOAD_FUEL_RELEASE.
  • # Requires access to given flight
  • #
  • # Arguments
  • # flightNid:
  • # files:
  • uploadFuelReleaseFiles(
  • flightNid: FlightNid!,
  • files: [ChecklistFileType!]!
  • ): [File!]!
  • # Requires access to resource GRAPHQL_UPLOAD_FUEL_RELEASE.
  • # Requires access to given flight
  • #
  • # Arguments
  • # flightNid:
  • # files: Files names to delete
  • deleteFuelReleaseFiles(
  • flightNid: FlightNid!,
  • files: [String!]!
  • ): Boolean!
  • # Will add Fuel release item to checklist if not present.
  • # Requires access to resource GRAPHQL_UPLOAD_FUEL_RELEASE.
  • # Requires access to given flight
  • #
  • # Arguments
  • # flightNid:
  • # checklistStatusId:
  • # Possible violation list: IS_NOT_SOME_ERROR
  • changeFuelReleaseStatus(
  • flightNid: FlightNid!,
  • checklistStatusId: ChecklistStatusId!
  • ): ChecklistMutationChangeFuelReleaseStatusOutput!
  • # Requires access to resource GRAPHQL_CHECKLIST_EDIT.
  • # Requires access to given flight
  • #
  • # Arguments
  • # flightNid: [Not documented]
  • # checklistDefinitionNid: [Not documented]
  • # emailData: [Not documented]
  • # additionalFlightReceivers: [Not documented]
  • sendFlightEmail(
  • flightNid: FlightNid!,
  • checklistDefinitionNid: ChecklistDefinitionNid!,
  • emailData: EmailInput!,
  • additionalFlightReceivers: [FlightChecklistEmailReceiverType!]!
  • ): Boolean!
  • # Requires access to resource GRAPHQL_CHECKLIST_EDIT.
  • # Requires access to given flight
  • #
  • # Arguments
  • # flightNid: [Not documented]
  • # checklistDefinitionNid: [Not documented]
  • # emailData: [Not documented]
  • # additionalTripReceivers: [Not documented]
  • sendTripEmail(
  • flightNid: FlightNid!,
  • checklistDefinitionNid: ChecklistDefinitionNid!,
  • emailData: EmailInput!,
  • additionalTripReceivers: [TripChecklistEmailReceiverType!]!
  • ): Boolean!
  • # Requires access to given flight
  • #
  • # Arguments
  • # flightNid: [Not documented]
  • # checklistDefinitionNid: [Not documented]
  • # mailboxMessageNid: [Not documented]
  • # isRead: [Not documented]
  • setMessageReadStatus(
  • flightNid: FlightNid!,
  • checklistDefinitionNid: ChecklistDefinitionNid!,
  • mailboxMessageNid: MailboxMessageNid!,
  • isRead: Boolean!
  • ): Boolean!
  • }