GitHub

ShopifyCartLinesArgs

Type

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

A cart represents the merchandise that a buyer intends to purchase, and the estimated cost associated with the cart, throughout a customer's session.

Use the checkoutUrl field to direct buyers to Shopify's web checkout to complete their purchase.

Learn more about interacting with carts.

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