CartProcessResponse
Response from cart processing operation.
Contains the results of converting a shopping cart into a finalized order, including the generated order ID and updated cart information.
type CartProcessResponse {
cartOrderId: Int!
cart: Cart!
order: Order!
}
Fields
CartProcessResponse.cartOrderId
● Int!
non-null scalar
Unique identifier of the created order.
System-generated ID for the order that was created from the processed cart. Used for order tracking and management.
CartProcessResponse.cart
● Cart!
non-null object
Updated cart information after processing.
Cart object reflecting its final state after being converted to an order, including any status changes or final calculations.
CartProcessResponse.order
● Order!
non-null object
Returned By
cartProcess
mutation