Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion guides/v2.3/graphql/queries/store-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}
```
Expand All @@ -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"
}
}
}
Expand Down Expand Up @@ -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
Expand Down