GitHub

ShopifyCollectionProductsArgs

Type

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

A group of products organized by a merchant to make their store easier to browse. Collections can help customers discover related products by category, season, promotion, or other criteria.

Query a collection's products with filtering options like availability, price range, vendor, and tags. Each collection includes SEO information, an optional Image, and supports custom data through metafields.

interface ShopifyCollectionProductsArgs {
  after: string
  before: string
  filters: ShopifyProductFilter[]
  first: number
  last: number
  reverse: boolean
  sortKey: ShopifyProductCollectionSortKeys
}