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 essential configuration and policy information about the store. The type contains scalar values representing store settings and capabilities, allowing clients to determine account requirements, protection status, and default consent options.
Example
query {
store {
domain
logo
favicon
name
customerAccountsEnabled
customerAccountsOptional
customerAccountsRequireApproval
catalogBrowsingRequiresAccount
canSellOverStock
isPasswordProtected
defaultConsentOptions
}
}Implements
None
Related Types
- String
- Boolean