ShipmentItemCreateInput
No description
input ShipmentItemCreateInput {
orderItemId: Int!
quantity: Int
name: String
sku: String
shipmentId: String!
}
Fields
ShipmentItemCreateInput.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.
ShipmentItemCreateInput.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.
ShipmentItemCreateInput.name
● String
scalar
Descriptive name for the shipment item.
Provides human-readable identification of the product being shipped for fulfillment and tracking purposes.
ShipmentItemCreateInput.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.
ShipmentItemCreateInput.shipmentId
● String!
non-null scalar
Unique UUID identifier for the shipment.
This identifier is used to track and reference the shipment throughout its lifecycle from creation to delivery.
Member Of
shipmentItemCreate
mutation