ShipmentCreateItemInput
No description
input ShipmentCreateItemInput {
orderItemId: Int!
quantity: Int
name: String
sku: String
}
Fields
ShipmentCreateItemInput.orderItemId
● Int!
non-null scalar
Reference to the original order item that this shipment item fulfills.
Links the shipped item back to the customer's original order for tracking and customer service.
ShipmentCreateItemInput.quantity
● Int
scalar
Number of units to include in the shipment item.
Must be a positive integer and cannot exceed the remaining unfulfilled quantity from the original order item.
ShipmentCreateItemInput.name
● String
scalar
Descriptive name for the shipment item.
Provides human-readable identification of the product being shipped for fulfillment and tracking purposes.
ShipmentCreateItemInput.sku
● String
scalar
Stock Keeping Unit code for the shipment item.
Unique product identifier used for inventory tracking and product identification throughout the fulfillment process.
Member Of
ShipmentCreateInput
input