Skip to main content

crewMemberExperiencePut

mutation {
crewMember {
experience {
put(
loginNid: 1024174
loginExperienceList: [
{
aircraftType: "A320"
blockTime: "05:00"
dutyTime: "08:00"
date: "2023-01-01"
takeOffCount: 3
landingCount: 3
approachList: [
{ approach: ILScatI, count: 1 }
{ approach: ILScatII, count: 2 }
]
}
]
) {
... on NonNullListOfNonNullLoginExperienceValue {
value {
aircraftType {
acftTypeId
icao
}
takeOffCount
landingCount
approachList {
approach
count
}
date
}
}
... on CrewMemberLoginExperienceMutationSectionPutViolationList {
value {
category
message
path
}
}
}
}
}
}