import { ShopifyFulfillment } from '@daffodil/driver/shopify'
A shipment of one or more items in an order. Accessed through the Order object's successfulFulfillments field.
Each fulfillment includes the line items that shipped, the tracking company name, and tracking details like numbers and URLs. An order can have multiple fulfillments when items ship separately or from different locations.
interface ShopifyFulfillment {
__typename: "Fulfillment"
fulfillmentLineItems: ShopifyFulfillmentLineItemConnection
trackingCompany: string
trackingInfo: ShopifyFulfillmentTrackingInfo[]
}
__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. |