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