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
Copy file name to clipboardExpand all lines: app/code/Magento/StoreGraphQl/etc/schema.graphqls
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
typeQuery {
4
4
storeConfig : StoreConfig @resolver(class: "Magento\\StoreGraphQl\\Model\\Resolver\\StoreConfigResolver") @doc(description: "The store config query") @cache(cacheable: false)
5
5
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")
7
7
): [StoreConfig] @resolver(class: "Magento\\StoreGraphQl\\Model\\Resolver\\AvailableStoresResolver") @doc(description: "Get a list of available store views and their config information.")
8
8
}
9
9
@@ -34,5 +34,5 @@ type StoreConfig @doc(description: "The type contains information about a store
34
34
secure_base_static_url : String @doc(description: "Secure base static URL for the store")
35
35
secure_base_media_url : String @doc(description: "Secure base media URL for the store")
36
36
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")
0 commit comments