OBJECT

AirportCode

Contains all available airport codes along with the most descriptive one

link GraphQL Schema definition

  • type AirportCode {
  • # Returns code specified in argument or most descriptive if specified does not
  • # exist
  • #
  • # Arguments
  • # priority: [Not documented]
  • mostDescriptiveWithPriority(
  • priority: AirportCodeType!
  • ): String!
  • # Returns first existing code using priority ICAO -> IATA -> FAA -> CUST
  • mostDescriptive: String!
  • # Returns first existing code using logged user priority
  • loggedUserPreferred: String!
  • icao: String
  • iata: String
  • faa: String
  • cust: String
  • }