You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
currency: Currency@resolver(class: "Magento\\DirectoryGraphQl\\Model\\Resolver\\Currency") @doc(description: "The currency query returns information about store currency.") @cache(cacheable: false)
6
+
countries: [Country] @resolver(class: "Magento\\DirectoryGraphQl\\Model\\Resolver\\Countries") @doc(description: "The countries query provides information for all countries.") @cache(cacheable: false)
7
+
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)
8
+
}
9
+
10
+
typeCurrency {
11
+
base_currency_code: String
12
+
base_currency_symbol: String
13
+
default_display_currecy_code: String@deprecated(reason: "Symbol was missed. Use `default_display_currency_code`.")
14
+
default_display_currency_code: String
15
+
default_display_currecy_symbol: String@deprecated(reason: "Symbol was missed. Use `default_display_currency_symbol`.")
0 commit comments