Country
A country supported by the shop (ISO 3166-1 alpha-2)
type Country implements Node {
availableLanguages: [Language!]!
currency: Currency!
id: ID!
isoCode: CountryCode!
name: String!
unitSystem: UnitSystem!
}
Fields
Country.availableLanguages ● [Language!]! non-null object
Shop languages available in this country
Country.currency ● Currency! non-null object
Primary currency in this country
Country.id ● ID! non-null scalar
Globally-unique identifier (e.g. "country:PL")
Country.isoCode ● CountryCode! non-null enum
ISO 3166-1 alpha-2 country code. ZZ when the country is not known (see Localization.country).
Country.name ● String! non-null scalar
English country name (e.g. "Poland", "Germany")
Country.unitSystem ● UnitSystem! non-null enum
Measurement system (metric/imperial)
Interfaces
Node interface
GraphQL Node interface — universal ID-based lookup
Member Of
Localization object