Skip to content
Last update: September 14, 2023

removeQuoteItem mutation

This mutation removes a product item from the quote request.

Arguments

The RemoveQuoteItemCommandType! represents a command for removing a product item from the quote request.

Field Description
quoteId String! The Id of the quote request to be updated.
lineItemId String! The Id of the specific line item to be modified.

Possible returns

Possible return Description
QuoteType Information about the order.
1
2
3
4
5
6
7
8
9
mutation RemoveQuoteItem($command: RemoveQuoteItemCommandType!) {
  removeQuoteItem(command: $command) {
    id
    items
    {
      id
    }
  }
}
1
2
3
4
5
6
{
  "command": {
    "quoteId": "893f7cd7-75eb-4b16-9fbb-e1e3b9053f16",
    "lineItemId": "d8a7ecf3-c112-4778-8fb3-e3fcd01ac063"
  }
}