16 December 2021
GraphQLCartsOrders
Previously, the Line Items in Carts and Orders contained the Product ID only, to refer to the related Product. From now on, the Line Items have the user-defined Product key also, in case it exists for the related Product. The new field is present on Carts that were created or updated after 2 December 2021 and on Orders created after this date.
Changes:
- [API] Added 
productKeyfield to LineItem. - [GraphQL API] Changed the 
LineItemtype:- Added the 
productKeyfield to theLineItemtype. 
 - Added the 
 
The following changes were introduced in terms of GraphQL SDL:
extend type LineItem {
  productKey: String
}