--- title: MarketRegion - GraphQL Admin description: A geographic region which comprises a market. api_version: unstable api_name: admin source_url: html: 'https://shopify.dev/docs/api/admin-graphql/unstable/interfaces/MarketRegion' md: >- https://shopify.dev/docs/api/admin-graphql/unstable/interfaces/MarketRegion.md --- # Market​Region interface Requires `read_markets` for queries and both `read_markets` as well as `write_markets` for mutations. A geographic region which comprises a market. ## Fields * id [ID!](https://shopify.dev/docs/api/admin-graphql/unstable/scalars/ID) non-null A globally-unique ID. * name [String!](https://shopify.dev/docs/api/admin-graphql/unstable/scalars/String) non-null The name of the region. *** ## Types implemented in * [Market​Region​Country](https://shopify.dev/docs/api/admin-graphql/unstable/objects/MarketRegionCountry) OBJECT A country which comprises a market. * code [Country​Code!](https://shopify.dev/docs/api/admin-graphql/unstable/enums/CountryCode) non-null The ISO code identifying the country. * currency [Currency​Setting!](https://shopify.dev/docs/api/admin-graphql/unstable/objects/CurrencySetting) non-null The currency which this country uses given its market settings. * id [ID!](https://shopify.dev/docs/api/admin-graphql/unstable/scalars/ID) non-null A globally-unique ID. * name [String!](https://shopify.dev/docs/api/admin-graphql/unstable/scalars/String) non-null The name of the region. * [Market​Region​Province](https://shopify.dev/docs/api/admin-graphql/unstable/objects/MarketRegionProvince) OBJECT A province of a country which comprises a market. * code [String!](https://shopify.dev/docs/api/admin-graphql/unstable/scalars/String) non-null The province or state code. * country [Market​Region​Province​Country!](https://shopify.dev/docs/api/admin-graphql/unstable/objects/MarketRegionProvinceCountry) non-null The country the province belongs to. * id [ID!](https://shopify.dev/docs/api/admin-graphql/unstable/scalars/ID) non-null A globally-unique ID. * name [String!](https://shopify.dev/docs/api/admin-graphql/unstable/scalars/String) non-null The name of the region. *** ##### Variables ```json { "id": "", "name": "" } ``` ##### Schema ```graphql interface MarketRegion { id: ID! name: String! } ```