Country
A country
type Country {
createdAt: ISO8601DateTime!
currencyCode: String
currencyName: String
id: ID!
iso2: String!
iso3: String!
isoNumeric: String!
name: String!
postalCodeRegex: String
updatedAt: ISO8601DateTime!
}
Fields
Country.createdAt
● ISO8601DateTime!
non-null scalar
Country.currencyCode
● String
scalar
Country.currencyName
● String
scalar
Country.id
● ID!
non-null scalar
Country.iso2
● String!
non-null scalar
The "ISO 2" field denotes the two-letter country code assigned by the International Organization for Standardization (ISO).
Country.iso3
● String!
non-null scalar
The "ISO 3" field denotes the three-letter country code assigned by the International Organization for Standardization (ISO).
Country.isoNumeric
● String!
non-null scalar
The "ISO Numeric" field denotes the numeric country code assigned by the International Organization for Standardization (ISO).
Country.name
● String!
non-null scalar
Country.postalCodeRegex
● String
scalar
The "Postal Code Reg" field denotes the regular expression used to validate postal codes for a country.
Country.updatedAt
● ISO8601DateTime!
non-null scalar
Returned By
countries
query
Member Of
State
object