GitHub

ShopifyFulfillment

interface

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

Represents a single fulfillment in an order.

interface ShopifyFulfillment {
  __typename: "Fulfillment"
  fulfillmentLineItems: ShopifyFulfillmentLineItemConnection
  trackingCompany: string
  trackingInfo: ShopifyFulfillmentTrackingInfo[]
}

Properties

__typename
"Fulfillment"
fulfillmentLineItems
ShopifyFulfillmentLineItemConnection

List of the fulfillment's line items.

trackingCompany
string

The name of the tracking company.

trackingInfo
ShopifyFulfillmentTrackingInfo[]

Tracking information associated with the fulfillment, such as the tracking number and tracking URL.