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]
  • getModifiedJourneyLogList(dateTime: DateTime!): JourneyLogChanges!
  • # List Journey Logs fatigue score field available values witch description
  • getFatigueScoreTypeList: Map
  • # Arguments
  • # flightNid: [Not documented]
  • # aircraftNid: [Not documented]
  • getJourneyLogConfiguration(
  • flightNid: FlightNid,
  • aircraftNid: AircraftNid
  • ): JourneyLogConfiguration!
  • # Requires access to given flight
  • #
  • # Arguments
  • # flightNid: [Not documented]
  • getJourneyLogHistory(flightNid: FlightNid!): [JourneyLogHistoryEntry!]!
  • # Requires access to resource GRAPHQL_JOURNEY_LOG_FILE_SEE.
  • # Requires access to given flight
  • #
  • # Arguments
  • # flightNid: [Not documented]
  • getJourneyLogFileList(flightNid: FlightNid!): [File!]!
  • }