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:
Name | Type | Description |
---|---|---|
id | ID | ID of the order item to update |
quantity | Int | New quantity of the order item |
price | Decimal | New price of the order item |
Errors:
Error | Description |
---|---|
Order item not found | The 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.