INPUT_OBJECT

ShipmentUpdateInput

link GraphQL Schema definition

1input ShipmentUpdateInput {
2
3# It is possible to set shipment info for a shipment that hasn't been sent yet.
4# If the shipment was actually sent in the past, use the completeShipment mutation.
5shipmentInfo: ShipmentInfoInput
6
7additionalMessage: String
8
9isGoodToGo: Boolean
10
11isPaid: Boolean
12
13paidValue: MonetaryValueInput
14
15# It isn't possible to update shipment method, shipment info or isGoodToGo fields
16# if the shipment was already shipped.
17#
18# Exactly one input field should be provided
19shipmentMethod: ShipmentMethodInput
20
21# Assign an external ID to reference this object by it later
22externalId: String
23}

link Required by