type Country = { __typename?: 'Country'; /** An array of regions within a particular country. */ available_regions?: Maybe<Array<Maybe<Region>>>; /** The name of the country in English. */ full_name_english?: Maybe<Scalars['String']['output']>; /** The name of the country in the current locale. */ full_name_locale?: Maybe<Scalars['String']['output']>; /** The unique ID for a `Country` object. */ id?: Maybe<Scalars['String']['output']>; /** The three-letter abbreviation of the country, such as USA. */ three_letter_abbreviation?: Maybe<Scalars['String']['output']>; /** The two-letter abbreviation of the country, such as US. */ two_letter_abbreviation?: Maybe<Scalars['String']['output']>;};