OBJECT

Country

link GraphQL Schema definition

  • type Country {
  • # other names by which this country is known
  • alternativeNames: [String!]
  • # ISO 3166-1 alpha-2 country code
  • code: String
  • # fairsharing_records tagged with this user_defined_tag
  • fairsharingRecords: [FairsharingRecord!]
  • # country id
  • id: Int!
  • # name of the country
  • name: String!
  • }