Country
Country
type Country {
id: Int!
alpha2code: String!
alpha3code: String!
name: String!
phonePrefix: String
}
Fields
id ● Int!
The id of the country
alpha2code ● String!
2 char country code, for example SE for Sweden
alpha3code ● String!
3 char country code, for example SWE for Sweden
name ● String!
The name of the country
phonePrefix ● String
Phone number prefix with + sign, for example +46 for Sweden
Example
{
"phonePrefix": "+46"
}