# blog Get the store blog information ## Authentication > **Public Access**: Accessible with the public API key ## Query Structure ```graphql { blog { # Fields from Blog type } } ``` ## Arguments No arguments available for this query. ## Return Type [Blog](/reference/storefront/1.3.0/objects/blog) - Represents a blog object, including its articles and related information. ## Example ```graphql query { blog { name commentsAreEnabled commentsRequireAccount commentsRequireApproval metafields(first: 10) { edges { node { namespace key value } } } } } ``` ## Related Types - [Blog](/reference/storefront/1.3.0/objects/blog)