# A market's currency settings. type MarketCurrencySettings { # The currency which this market's prices are defined in, and the # currency which its customers must use if local currencies are disabled. baseCurrency: CurrencySetting! # Whether or not local currencies are enabled. If enabled, then prices will # be converted to give each customer the best experience based on their # region. If disabled, then all customers in this market will see prices # in the market's base currency. localCurrencies: Boolean! } # The URL for the homepage of the online store in the context of a particular market and a particular locale. type MarketWebPresenceRootUrl { # The locale that the storefront loads in. locale: String! # The URL. url: URL! }