GitHub

ShopifyOrderLineItemsArgs

interface

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

An order is a customer’s completed request to purchase one or more products from a shop. An order is created when a customer completes the checkout process, during which time they provides an email address, billing address and payment information.

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