diff --git a/vendor/magento/module-directory-graph-ql/etc/schema.graphqls b/vendor/magento/module-directory-graph-ql/etc/schema.graphqls index ed16732..740ed2d 100644 --- a/vendor/magento/module-directory-graph-ql/etc/schema.graphqls +++ b/vendor/magento/module-directory-graph-ql/etc/schema.graphqls @@ -1,16 +1,16 @@ # Copyright © Magento, Inc. All rights reserved. # See COPYING.txt for license details. type Query { currency: Currency @resolver(class: "Magento\\DirectoryGraphQl\\Model\\Resolver\\Currency") @doc(description: "Return information about the store's currency.") @cache(cacheable: false) - countries: [Country] @resolver(class: "Magento\\DirectoryGraphQl\\Model\\Resolver\\Countries") @doc(description: "The countries query provides information for all countries.") @cache(cacheable: false) + countries: [Country] @resolver(class: "Magento\\DirectoryGraphQl\\Model\\Resolver\\Countries") @doc(description: "The countries query provides information for all countries.") @cache(cacheIdentity: "Experius\\CoreGraphQl\\Model\\Resolver\\Country\\Identity") country (id: String): Country @resolver(class: "Magento\\DirectoryGraphQl\\Model\\Resolver\\Country") @doc(description: "The countries query provides information for a single country.") @cache(cacheable: false) } type Currency { base_currency_code: String @doc(description: "The base currency set for the store, such as USD.") base_currency_symbol: String @doc(description: "The symbol for the specified base currency, such as $.") default_display_currecy_code: String @deprecated(reason: "Symbol was missed. Use `default_display_currency_code`.") default_display_currency_code: String @doc(description: "The currency that is displayed by default, such as USD.") default_display_currecy_symbol: String @deprecated(reason: "Symbol was missed. Use `default_display_currency_code`.") default_display_currency_symbol: String @doc(description: "The currency symbol that is displayed by default, such as $.")