From 16b7df4d670cdd452fdbff8c76ba85c0ac417105 Mon Sep 17 00:00:00 2001 From: Patrick McLain Date: Sat, 21 Sep 2019 08:44:54 -0400 Subject: [PATCH] Add store name to store config query schema --- guides/v2.3/graphql/queries/store-config.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/guides/v2.3/graphql/queries/store-config.md b/guides/v2.3/graphql/queries/store-config.md index e84442095ad..fd04ebd62fa 100644 --- a/guides/v2.3/graphql/queries/store-config.md +++ b/guides/v2.3/graphql/queries/store-config.md @@ -38,6 +38,7 @@ The following call returns all details of a store's configuration. secure_base_link_url secure_base_static_url secure_base_media_url + store_name } } ``` @@ -63,7 +64,8 @@ The following call returns all details of a store's configuration. "secure_base_url": "http://magento2.vagrant193/", "secure_base_link_url": "http://magento2.vagrant193/", "secure_base_static_url": "http://magento2.vagrant193/pub/static/version1536249714/", - "secure_base_media_url": "http://magento2.vagrant193/pub/media/" + "secure_base_media_url": "http://magento2.vagrant193/pub/media/", + "store_name": "My Store" } } } @@ -198,6 +200,7 @@ Attribute | Data Type | Description | Example `secure_base_media_url` | String | The secure fully-qualified URL that specifies the location of user media files | `https://magentohost.example.com/pub/media/` `secure_base_static_url` | String | The secure fully-qualified URL that specifies the location of static view files | `https://magentohost.example.com/pub/static/` `secure_base_url` | String | The store's fully-qualified secure base URL | `https://magentohost.example.com/` +`store_name` | String | The store's name | `My Store` `timezone` | String | The store's time zone | `America/Chicago` `website_id` | Integer | The ID number assigned to the parent website | `1` `weight_unit` | String | The weight unit for products | `lbs`, `kgs`, etc