import { ShopifyBlog } from '@daffodil/driver/shopify'
A blog container for Article objects. Stores can have multiple blogs, for example to organize content by topic or purpose.
Each blog provides access to its articles, contributing ArticleAuthor objects, and SEO information. You can retrieve articles individually by handle or as a paginated list.
interface ShopifyBlog {
__typename: "Blog"
articleByHandle: ShopifyArticle
articles: ShopifyArticleConnection
authors: ShopifyArticleAuthor[]
handle: string
id: string
metafield: ShopifyMetafield
metafields: ShopifyMetafield[]
onlineStoreUrl: Maybe<Scalars['URL']['output']>
seo: ShopifySeo
title: string
}
__typename "Blog" |
|---|
articleByHandle ShopifyArticle |
|---|
Find an article by its handle. |
articles ShopifyArticleConnection |
|---|
List of the blog's articles. |
authors ShopifyArticleAuthor[] |
|---|
The authors who have contributed to the blog. |
handle string |
|---|
A human-friendly unique string for the Blog automatically generated from its title. |
id string |
|---|
A globally-unique ID. |
metafield ShopifyMetafield |
|---|
A custom field, including its |
metafields ShopifyMetafield[] |
|---|
A list of custom fields that a merchant associates with a Shopify resource. |
onlineStoreUrl Maybe<Scalars['URL']['output']> |
|---|
The URL used for viewing the resource on the shop's Online Store. Returns |
seo ShopifySeo |
|---|
The blog's SEO information. |
title string |
|---|
The blogsās title. |