flight-support/mutation/createOverflightPermit
mutation {
integration {
flightSupport {
flightPermits {
createOverflightPermit(
flightNid: 12345678
country: "POL"
permit: {
entryPoint: "ENTRY"
exitPoint: "EXIT"
number: "1234"
validity: 24
supplier: "Flight Support"
notes: ""
revalidation: 1
shortNotice72h: false
permitStatus: "RQS"
}
) {
... on LegPermit {
legPermitNid
country {
codeIso
name
}
entryPoint
exitPoint
number
validity
supplier
notes
revalidation
shortNotice
permitStatus
}
}
}
}
}
}