GitHub

ShopifyProductCollectionsArgs

Type

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

Represents an item listed in a shop's catalog.

Products support multiple product variants, representing different versions of the same product, and can include various media types. Use the selectedOrFirstAvailableVariant or variantBySelectedOptions fields to help customers find the right variant based on their selections.

Products can be organized into collections, associated with selling plans for subscriptions, and extended with custom data through metafields.

Learn more about working with products and collections.

interface ShopifyProductCollectionsArgs {
  after: string
  before: string
  first: number
  last: number
  reverse: boolean
}