market.graphql 790 B

123456789101112131415161718192021
  1. # A market's currency settings.
  2. type MarketCurrencySettings {
  3. # The currency which this market's prices are defined in, and the
  4. # currency which its customers must use if local currencies are disabled.
  5. baseCurrency: CurrencySetting!
  6. # Whether or not local currencies are enabled. If enabled, then prices will
  7. # be converted to give each customer the best experience based on their
  8. # region. If disabled, then all customers in this market will see prices
  9. # in the market's base currency.
  10. localCurrencies: Boolean!
  11. }
  12. # The URL for the homepage of the online store in the context of a particular market and a particular locale.
  13. type MarketWebPresenceRootUrl {
  14. # The locale that the storefront loads in.
  15. locale: String!
  16. # The URL.
  17. url: URL!
  18. }