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-4Lines changed: 10 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -17,9 +17,16 @@ type Website @doc(description: "Website is deprecated because it is should not b
17
17
}
18
18
19
19
typeStoreConfig@doc(description: "The type contains information about a store config") {
20
-
id : Int @doc(description: "The ID number assigned to the store")
21
-
code : String @doc(description: "A code assigned to the store to identify it")
22
-
website_id : Int @doc(description: "The ID number assigned to the website store belongs")
20
+
id : Int @deprecated(reason: "Use `store_code` instead.") @doc(description: "The ID number assigned to the store")
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
+
store_group_code : ID @doc(description: "The unique ID/Code for a store group of which the `StoreConfig` belongs")
26
+
store_group_name : String @doc(description: "The store group name for which the `StoreConfig` belongs")
27
+
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")
28
+
website_code : ID @doc(description: "The unique ID/Code for a website group of which the `StoreConfig` belongs")
29
+
website_name : ID @doc(description: "The name of the website")
0 commit comments