GitHub

ShopifyMetafieldReferencesArgs

Type

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

Custom metadata attached to a Shopify resource such as a Product, Collection, or Customer. Each metafield is identified by a namespace and key, and stores a value with an associated type.

Values are always stored as strings, but the type field indicates how to interpret the data. When a metafield's type is a resource reference, use the reference or references fields to retrieve the linked objects. Access metafields on any resource that implements the HasMetafields interface.

interface ShopifyMetafieldReferencesArgs {
  after: string
  before: string
  first: number
  last: number
}