Skip to main content

updateOrderItem

Update an order item. This mutation allows you to update the quantity and price of an existing order item. You need to provide the ID of the order item you want to update. The quantity and price are optional parameters. If they are not provided, the existing values will be kept. The mutation will return the updated order item. If the order item with the provided ID does not exist, it will raise an 'Order item not found' error.

Parameters:

NameTypeDescription
idIDID of the order item to update
quantityIntNew quantity of the order item
priceDecimalNew price of the order item

Errors:

ErrorDescription
Order item not foundThe order item with the provided ID does not exist

Returns:

The updated order item.

updateOrderItem(
input: UpdateOrderItemInput!
): OrderItem!

Arguments

updateOrderItem.input ● UpdateOrderItemInput! non-null input

Parameters for UpdateOrderItem

Type

OrderItem object

The order item type. This type represents an order item in the system.