GitHub

ShopifyCartDeliveryGroupCartLinesArgs

Type

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

Groups cart line items that share the same delivery destination. Each group provides the available CartDeliveryOption choices for that address, along with the customer's selected option.

Access through the Cart object's deliveryGroups field. Items are grouped by merchandise type (one-time purchase vs subscription), allowing different delivery methods for each.

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