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

Commit 50c2d15

Browse files
committed
initial integration of themeql
1 parent bb05e0b commit 50c2d15

File tree

1 file changed

+34
-19
lines changed

1 file changed

+34
-19
lines changed

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

Lines changed: 34 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -3,32 +3,47 @@ group: graphql
33
title: storeConfig endpoint
44
---
55

6-
The `storeConfig` endpoint returns information about a store's configuration, including its locale, currency codes, and the secure and unsecure URLs.
6+
The `storeConfig` endpoint defines information about a store's configuration; such as, locale, currency codes, secure and unsecure URLs, and the store's thematic elements; such as, footer and header information, copyright text, and logo information.
77

88
## Query structure
99

1010
`storeConfig: StoreConfig`
1111

1212
## Supported attributes
1313

14-
Attribute | Data Type | Description
15-
--- | --- | ---
16-
`id` | Integer | The ID number assigned to the store
17-
`code` | String | A unique identifier for the store
18-
`website_id` | Integer | The ID number assigned to the parent website
19-
`locale` | String | The store's locale, such as `en_US`
20-
`base_currency_code` | String | The code representing the currency in which Magento processes all payment transactions, such as `USD`
21-
`default_display_currency_code` | String | The code representing the currency displayed on the store, such as `USD`
22-
`timezone` | String | The store's time zone, such as `America/Chicago`
23-
`weight_unit` | String | The weight unit for products, such as `lbs` or `kgs`
24-
`base_url` | String | The store's fully-qualified base URL, such as `http://magentohost.example.com/`
25-
`base_link_url` | String | A fully-qualified URL that is used to create relative links to the `base_url`
26-
`base_static_url` | String | The fully-qualified URL that specifies the location of static view files, such as `http://magentohost.example.com/pub/static/`
27-
`base_media_url` | String | The fully-qualified URL that specifies the location of user media files, such as `http://magentohost.example.com/pub/media/`
28-
`secure_base_url` | String | The store's fully-qualified secure base URL, such as `https://magentohost.example.com/`
29-
`secure_base_link_url` | String | A fully-qualified URL that is used to create relative links to the `base_url`
30-
`secure_base_static_url` | String | The secure fully-qualified URL that specifies the location of static view files, such as `https://magentohost.example.com/pub/static/`
31-
`secure_base_media_url` | String | The secure fully-qualified URL that specifies the location of user media files, such as `https://magentohost.example.com/pub/media/`
14+
Attribute | Data Type | Description | Implementation
15+
--- | --- | --- | ---
16+
`absolute_footer` | String | Footer Miscellaneous HTML | Theme
17+
`base_currency_code` | String | The code representing the currency in which Magento processes all payment transactions, such as `USD` | storeConfig
18+
`base_link_url` | String | A fully-qualified URL that is used to create relative links to the `base_url` | storeConfig
19+
`base_static_url` | String | The fully-qualified URL that specifies the location of static view files, such as `http://magentohost.example.com/pub/static/` | storeConfig
20+
`base_media_url` | String | The fully-qualified URL that specifies the location of user media files, such as `http://magentohost.example.com/pub/media/` | storeConfig
21+
`base_url` | String | The store's fully-qualified base URL, such as `http://magentohost.example.com/` | storeConfig
22+
`code` | String | A unique identifier for the store | storeConfig
23+
`copyright` | String | Copyright | Theme
24+
`default_display_currency_code` | String | The code representing the currency displayed on the store, such as `USD` | storeConfig
25+
`default_description` | String | Default Meta Description | Theme
26+
`default_keywords` | String | Default Meta Keywords | Theme
27+
`default_title` | String | Default Page Title | Theme
28+
`demonotice` | Int | Display Demo Store Notice | Theme
29+
`head_includes` | String | Scripts and Style Sheets | Theme
30+
`header_logo_src` | String | Logo Image | Theme
31+
`head_shortcut_icon` | String | Favicon Icon | Theme
32+
`id` | Integer | The ID number assigned to the store | storeConfig
33+
`locale` | String | The store's locale, such as `en_US` | storeConfig
34+
`logo_alt` | String | Logo Image Alt | Theme
35+
`logo_height` | Int | Logo Attribute Height | Theme
36+
`logo_width` | Int | Logo Attribute Width | Theme
37+
`secure_base_link_url` | String | A fully-qualified URL that is used to create relative links to the `base_url` | storeConfig
38+
`secure_base_media_url` | String | The secure fully-qualified URL that specifies the location of user media files, such as `https://magentohost.example.com/pub/media/` | storeConfig
39+
`secure_base_static_url` | String | The secure fully-qualified URL that specifies the location of static view files, such as `https://magentohost.example.com/pub/static/` | storeConfig
40+
`secure_base_url` | String | The store's fully-qualified secure base URL, such as `https://magentohost.example.com/` | storeConfig
41+
`timezone` | String | The store's time zone, such as `America/Chicago` | storeConfig
42+
`title_prefix` | String | Page Title Prefix | Theme
43+
`title_suffix` | String | Page Title Suffix | Theme
44+
`website_id` | Integer | The ID number assigned to the parent website | storeConfig
45+
`weight_unit` | String | The weight unit for products, such as `lbs` or `kgs` | storeConfig
46+
`welcome` | String | Welcome Text | Theme
3247
{:style="table-layout:auto;"}
3348

3449
## Example usage

0 commit comments

Comments
 (0)