OBJECT

CountryPermitQuery

link GraphQL Schema definition

  • type CountryPermitQuery {
  • # Requires access to resource GRAPHQL_COUNTRY_DATABASE_SEE
  • #
  • # Arguments
  • # countryCode: [Not documented]
  • getCountryOverflightPermitList(
  • countryCode: CountryCode!
  • ): [CountryOverflightPermit!]!
  • # Requires access to given flight
  • #
  • # Arguments
  • # flightNid: [Not documented]
  • # countryCodeList: [Not documented]
  • getFlightCountryRequiredOverflightPermits(
  • flightNid: FlightNid!,
  • countryCodeList: [CountryCode!]!
  • ): [CountryRequiredOverflightPermit!]!
  • # Requires access to resource GRAPHQL_COUNTRY_DATABASE_SEE
  • #
  • # Arguments
  • # countryCode: [Not documented]
  • getCountryLandingPermitList(
  • countryCode: CountryCode!
  • ): [CountryLandingPermit!]!
  • # Requires access to given flight
  • #
  • # Arguments
  • # flightNid: [Not documented]
  • # countryCodeList: [Not documented]
  • getFlightCountryRequiredLandingPermits(
  • flightNid: FlightNid!,
  • countryCodeList: [CountryCode!]!
  • ): [CountryRequiredLandingPermit!]!
  • # Requires access to resource GRAPHQL_COUNTRY_DATABASE_SEE
  • #
  • # Arguments
  • # countryCode: [Not documented]
  • getCountryPermitSetting(countryCode: CountryCode!): CountryPermitSetting
  • }