OBJECT
JourneyLogMutation
Node for Journey Log modifications
link GraphQL Schema definition
- type JourneyLogMutation {
- # Create Journey Log
- #
- # Arguments
- # journeyLogInput: [Not documented]
- (: JourneyLogInput!): Boolean
- # Modify Journey Log
- #
- # Arguments
- # journeyLogInput: [Not documented]
- (: JourneyLogInput!): Boolean
- # Delete Journey Log
- #
- # Arguments
- # flightNid: [Not documented]
- (: FlightNid!): Boolean!
- # Cancel Journey Log.
- # Requires access to given flight
- #
- # Arguments
- # flightNid: [Not documented]
- # cancelNotes: Cancel notes
- (: FlightNid!, : String!): Boolean
- # Requires access to given flight
- #
- # Arguments
- # flightNid: [Not documented]
- # fileId: [Not documented]
- (: FlightNid!, : String!): Boolean!
- # Requires access to given flight
- #
- # Arguments
- # flightNid: [Not documented]
- # file: [Not documented]
- (: FlightNid!, : Upload!): File!
- }