INPUT_OBJECT
ShipmentUpdateInput
link GraphQL Schema definition
1 input 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. 5 ShipmentInfoInput : 6 7 String : 8 9 Boolean : 10 11 Boolean : 12 13 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 19 ShipmentMethodInput : 20 }