Skip to main content

createPositioning

mutation {
positioning {
create(
positioning: {
startTime: "2023-03-14UTC07:00:00"
endTime: "2023-03-14UTC10:00:00"
adep: "EPWA"
ades: "EDDF"
description: "Positioning flight"
type: COMMERCIAL_CARRIER
crewList: [123456, 654321, 987654, ...]
}
) {
... on NonNullPositioningValue {
value {
positioningNid
name
startAirport {
code {
icao
iata
cust
}
}
endAirport {
code {
icao
iata
cust
}
}
startDateTime
endDateTime
crewList {
login {
code
knownAs
login
}
dutyEndDateTime
reportingDateTime
}
}
}
... on ErrorList {
errorList {
category
message
path
}
}
}
}
}