Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Commit 374842c

Browse files
pmclainkeharper
authored andcommitted
Add store name to store config query schema (#5448)
1 parent 79ae157 commit 374842c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

guides/v2.3/graphql/queries/store-config.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ The following call returns all details of a store's configuration.
3838
secure_base_link_url
3939
secure_base_static_url
4040
secure_base_media_url
41+
store_name
4142
}
4243
}
4344
```
@@ -63,7 +64,8 @@ The following call returns all details of a store's configuration.
6364
"secure_base_url": "http://magento2.vagrant193/",
6465
"secure_base_link_url": "http://magento2.vagrant193/",
6566
"secure_base_static_url": "http://magento2.vagrant193/pub/static/version1536249714/",
66-
"secure_base_media_url": "http://magento2.vagrant193/pub/media/"
67+
"secure_base_media_url": "http://magento2.vagrant193/pub/media/",
68+
"store_name": "My Store"
6769
}
6870
}
6971
}
@@ -198,6 +200,7 @@ Attribute | Data Type | Description | Example
198200
`secure_base_media_url` | String | The secure fully-qualified URL that specifies the location of user media files | `https://magentohost.example.com/pub/media/`
199201
`secure_base_static_url` | String | The secure fully-qualified URL that specifies the location of static view files | `https://magentohost.example.com/pub/static/`
200202
`secure_base_url` | String | The store's fully-qualified secure base URL | `https://magentohost.example.com/`
203+
`store_name` | String | The store's name | `My Store`
201204
`timezone` | String | The store's time zone | `America/Chicago`
202205
`website_id` | Integer | The ID number assigned to the parent website | `1`
203206
`weight_unit` | String | The weight unit for products | `lbs`, `kgs`, etc

0 commit comments

Comments
 (0)