Shipment
No description
type Shipment {
id: Int!
orderId: Int!
status: String!
date: DateTime!
totalGross: Float!
totalNet: Float!
totalTax: Float!
totalDiscountValue: Float!
printDate: DateTime
items: [ShipmentItem!]
trackAndTrace: [TrackAndTrace!]
}
Fields
Shipment.id ● Int! non-null scalar
Shipment unique identifier
Shipment.orderId ● Int! non-null scalar
Order unique identifier
Shipment.status ● String! non-null scalar
Shipment status
Shipment.date ● DateTime! non-null scalar
Shipment creation date
Shipment.totalGross ● Float! non-null scalar
Total gross amount of the shipment
Shipment.totalNet ● Float! non-null scalar
Total net amount of the shipment
Shipment.totalTax ● Float! non-null scalar
Total tax amount of the shipment
Shipment.totalDiscountValue ● Float! non-null scalar
Total discount value of the shipment
Shipment.printDate ● DateTime scalar
Preferred delivery date for the shipment
Shipment.items ● [ShipmentItem!] list object
Items in the shipment
Shipment.trackAndTrace ● [TrackAndTrace!] list object
Track and trace information
Member Of
Order object