GitHub

ShopifyBlogArticlesArgs

Type

import { ShopifyBlogArticlesArgs } 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 ShopifyBlogArticlesArgs {
  after: string
  before: string
  first: number
  last: number
  query: string
  reverse: boolean
  sortKey: ShopifyArticleSortKeys
}