# Query: List countries (constants)
Fetch a list of `country` constants and include their `provinces`.
Other sets of constants are also available, like `currencies` and `accountSubtypes`.
Operation
: ```graphql
query {
countries {
code
name
provinces {
code
name
}
}
}
```