OBJECT
JourneyLogQuery
Node for Journey Log queries
link GraphQL Schema definition
- type JourneyLogQuery {
- # List Journey Logs created, modified or deleted after selected date (max one week
- # until now)
- #
- # Arguments
- # dateTime: [Not documented]
- (: DateTime!): JourneyLogChanges!
- # List Journey Logs fatigue score field available values witch description
- : Map
- # Arguments
- # flightNid: [Not documented]
- # aircraftNid: [Not documented]
- (
- : FlightNid,
- : AircraftNid
- ): JourneyLogConfiguration!
- # Requires access to given flight
- #
- # Arguments
- # flightNid: [Not documented]
- (: FlightNid!): [JourneyLogHistoryEntry!]!
- # Requires access to resource GRAPHQL_JOURNEY_LOG_FILE_SEE.
- # Requires access to given flight
- #
- # Arguments
- # flightNid: [Not documented]
- (: FlightNid!): [File!]!
- # Requires access to given flight
- #
- # Arguments
- # flightNid:
- # blockOff:
- # apuHours:
- (
- : FlightNid!,
- : DateTime!,
- : TimeLong!
- ): String
- # Requires access to given flight
- #
- # Arguments
- # flightNid:
- # blockOff:
- # apuCycles:
- (
- : FlightNid!,
- : DateTime!,
- : Int!
- ): String
- }