StoreInfo
Basic information about the store including domain, logo, policies, and account settings.
Type Definition
type StoreInfo {
domain: String!
logo: String
favicon: String
name: String!
customerAccountsEnabled: Boolean!
customerAccountsOptional: Boolean!
customerAccountsRequireApproval: Boolean!
catalogBrowsingRequiresAccount: Boolean!
canSellOverStock: Boolean!
isPasswordProtected: Boolean!
defaultConsentOptions: [String]!
}Fields
Relationships
StoreInfo is returned by the store query and provides core configuration and policy information about a store. It contains scalar fields representing fundamental store properties and settings that control customer access and account behavior.
Example
query {
store {
domain
logo
favicon
name
customerAccountsEnabled
customerAccountsOptional
customerAccountsRequireApproval
catalogBrowsingRequiresAccount
canSellOverStock
isPasswordProtected
defaultConsentOptions
}
}Implements
This type does not implement any interfaces.
Related Types
- String
- Boolean