query {
flightList(
filter: {
timeInterval: { start: "2024-12-01", end: "2024-12-31" }
flightStatus: CONFIRMED
isCnl: false
}
) {
flightNid
startTimeUTC
endTimeUTC
flightTags {
label
}
startAirport {
code {
icao
iata
}
}
endAirport {
code {
icao
iata
}
}
acft {
registration
acftType {
icao
iata
}
}
crewList {
contact {
name
surname
personCode
}
position {
name
posType
}
flightTrainingType
}
journeyLog {
takeoffCrewLogin {
code
}
landingCrewLogin {
code
}
pilotMonitoringLanding {
code
}
pilotMonitoringTakeOff {
code
}
landingCount
approachList {
approach
count
}
approachTypeList {
approachType
count
}
autoland
}
}
}