GitHub

ShopifyBlog

interface

import { ShopifyBlog } from '@daffodil/driver/shopify'

An online store blog.

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
}

Properties

__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 namespace and key, that's associated with a Shopify resource for the purposes of adding and storing additional information.

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 null if the resource is currently not published to the Online Store sales channel.

seo
ShopifySeo

The blog's SEO information.

title
string

The blogs’s title.