OBJECT
JourneyLogMutationNew
Node for Journey Log modifications
link GraphQL Schema definition
- type JourneyLogMutationNew {
- # Create Journey Log
- #
- # Arguments
- # journeyLogInput:
- # Possible violation list: IS_NOT_SOME_ERROR
- JourneyLogInputNew!): JourneyLogMutationNewCreateJourneyLogOutput! ( :
- # Modify Journey Log
- #
- # Arguments
- # journeyLogInput:
- # Possible violation list: IS_NOT_SOME_ERROR
- JourneyLogInputNew!): JourneyLogMutationNewModifyJourneyLogOutput! ( :
- # Create or Modify Journey Log
- #
- # Arguments
- # journeyLogInput:
- # Possible violation list: IS_NOT_SOME_ERROR
- (
- JourneyLogInputNew! :
- ): JourneyLogMutationNewCreateOrModifyJourneyLogOutput!
- # Delete Journey Log
- #
- # Arguments
- # flight:
- # Possible violation list: IS_NOT_SOME_ERROR
- FlightIdentificationInput!): JourneyLogMutationNewDeleteJourneyLogOutput! ( :
- # Cancel Journey Log
- #
- # Arguments
- # flight:
- # Possible violation list: IS_NOT_SOME_ERROR
- # cancelNotes: Cancel notes
- (
- FlightIdentificationInput!, :
- String! :
- ): JourneyLogMutationNewCancelJourneyLogOutput!
- # Upload Journey Log file
- #
- # Arguments
- # flight:
- # Possible violation list: IS_NOT_SOME_ERROR
- # file:
- (
- FlightIdentificationInput!, :
- Upload! :
- ): JourneyLogMutationNewUploadJourneyLogFileOutput!
- # Replace all Journey Log files
- #
- # Arguments
- # flight:
- # Possible violation list: IS_NOT_SOME_ERROR
- # fileList:
- (
- FlightIdentificationInput!, :
- Upload!]! : [
- ): JourneyLogMutationNewReplaceJourneyLogAllFilesOutput!
- # Delete all Journey Log files
- #
- # Arguments
- # flight:
- # Possible violation list: IS_NOT_SOME_ERROR
- (
- FlightIdentificationInput! :
- ): JourneyLogMutationNewDeleteJourneyLogAllFilesOutput!
- }