Skip to content

Commit ef2b9c4

Browse files
committed
PWA-805: Expose localization system / store config from GraphQL
1 parent c64a66f commit ef2b9c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/code/Magento/StoreGraphQl/etc/schema.graphqls

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
type Query {
44
storeConfig : StoreConfig @resolver(class: "Magento\\StoreGraphQl\\Model\\Resolver\\StoreConfigResolver") @doc(description: "The store config query") @cache(cacheable: false)
55
availableStores(
6-
useCurrentGroup: Boolean @doc(description: "Get only store views from the current store group")
6+
useCurrentGroup: Boolean @doc(description: "Filter store views by current store group")
77
): [StoreConfig] @resolver(class: "Magento\\StoreGraphQl\\Model\\Resolver\\AvailableStoresResolver") @doc(description: "Get a list of available store views and their config information.")
88
}
99

@@ -34,5 +34,5 @@ type StoreConfig @doc(description: "The type contains information about a store
3434
secure_base_static_url : String @doc(description: "Secure base static URL for the store")
3535
secure_base_media_url : String @doc(description: "Secure base media URL for the store")
3636
store_name : String @doc(description: "Name of the store")
37-
use_store_in_url: Boolean @doc(description: "Indicates whether store code is used in url")
37+
use_store_in_url: Boolean @doc(description: "The configuration determines if the store code should be used in the URL")
3838
}

0 commit comments

Comments
 (0)