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
+10-10Lines changed: 10 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -19,16 +19,16 @@ type Website @doc(description: "Website is deprecated because it is should not b
19
19
typeStoreConfig@doc(description: "The type contains information about a store config") {
20
20
id : Int @deprecated(reason: "Use `store_code` instead.") @doc(description: "The ID number assigned to the store")
21
21
code : String @deprecated(reason: "Use `store_code` instead.") @doc(description: "A code assigned to the store to identify it")
22
-
store_code: ID@doc(description: "The unique ID for a `StoreConfig` object representing store view and used as optional `Store` in Headers to select a current store view.")
23
-
store_name : String @doc(description: "The name of the store view.")
24
-
store_sort_order : Float @doc(description: "The store view sort order")
25
-
is_default_store : Boolean @doc(description: "The default store for the store group")
26
-
store_group_code : ID @doc(description: "The unique ID/Code for a store groupthe `StoreConfig` belongs to")
27
-
store_group_name : String @doc(description: "The store group name the `StoreConfig` belongs to")
28
-
is_default_store_group : Boolean @doc(description: "The default store group for which the `StoreConfig` belongs")
29
-
website_id : Int @deprecated(reason: "The field should not be used on the storefront") @doc(description: "The ID number assigned to the website store belongs")
30
-
website_code : ID @doc(description: "The unique ID/Code for a website group of which the `StoreConfig` belongs")
31
-
website_name : ID @doc(description: "The name of the website")
22
+
store_code: ID@doc(description: "The unique ID of the store view. In the Admin, this is called the Store View Code. When making a GraphQL call, assign this value to the `Store` header to provide the scope")
23
+
store_name : String @doc(description: "The label assigned to the store view")
24
+
store_sort_order : Int @doc(description: "The store view sort order")
25
+
is_default_store : Boolean @doc(description: "Indicates whether the store view has been designated as the default within the store group")
26
+
store_group_code : ID @doc(description: "The unique ID assigned to the store group. In the Admin, this is called the Store Name")
27
+
store_group_name : String @doc(description: "The label assigned to the store group")
28
+
is_default_store_group : Boolean @doc(description: "Indicates whether the store group has been designated as the default within the website")
29
+
website_id : Int @deprecated(reason: "The field should not be used on the storefront") @doc(description: "The ID number assigned to the website store")
30
+
website_code : ID @doc(description: "The unique ID for the website")
31
+
website_name : ID @doc(description: "The label assigned to the website")
0 commit comments