Skip to main content

Shipment

No description

type Shipment {
id: String!
createdAt: DateTime!
lastModifiedAt: DateTime!
expectedDeliveryAt: DateTime
status: ShipmentStatus
orderId: Int!
items: [ShipmentItem!]
trackAndTraces: [TrackAndTrace!]
}

Fields

Shipment.id ● String! non-null scalar

Unique identifier

Shipment.createdAt ● DateTime! non-null scalar

Creation date

Shipment.lastModifiedAt ● DateTime! non-null scalar

Last modified date

Shipment.expectedDeliveryAt ● DateTime scalar

Expected delivery date

Shipment.status ● ShipmentStatus enum

Shipment status

Shipment.orderId ● Int! non-null scalar

The ID of the Order the shipment belongs to

Shipment.items ● [ShipmentItem!] list object

Shipment items

Shipment.trackAndTraces ● [TrackAndTrace!] list object

Track and traces

Returned By

shipment query ● shipmentCreate mutation ● shipmentUpdate mutation

Member Of

Order object ● ShipmentResponse object