Skip to content

Commit d4061e5

Browse files
committed
MC-39744-graphql-store-group: Modify storeConfig descriptions
1 parent bfdec57 commit d4061e5

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

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

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@ type Website @doc(description: "Website is deprecated because it is should not b
1919
type StoreConfig @doc(description: "The type contains information about a store config") {
2020
id : Int @deprecated(reason: "Use `store_code` instead.") @doc(description: "The ID number assigned to the store")
2121
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 group the `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")
3232
locale : String @doc(description: "Store locale")
3333
base_currency_code : String @doc(description: "Base currency code")
3434
default_display_currency_code : String @doc(description: "Default display currency code")

0 commit comments

Comments
 (0)