3 July 2023
CartsOrdersGraphQL
We introduced the
key
field on CustomLineItem and CustomLineItemDraft. This ensures a consistent experience when working with external identifiers across different entity types in Composable Commerce.Changes:
- [API] Added the
key
field to CustomLineItem and CustomLineItemDraft. - [API] Added
key
field to Add CustomLineItem update action on Carts. - [API] Added
key
field to Add CustomLineItem update action on Order Edits. - [GraphQL API] Changed the
CustomLineItemDraftOutput
type:- Added the
key
field to theCustomLineItemDraftOutput
type.
- Added the
- [GraphQL API] Changed the
AddCartCustomLineItem
type:- Input field
key
was added toAddCartCustomLineItem
type.
- Input field
- [GraphQL API] Changed the
AddStagedOrderCustomLineItem
type:- Input field
key
was added toAddStagedOrderCustomLineItem
type.
- Input field
- [GraphQL API] Changed the
CustomLineItem
type:- Added the
key
field to theCustomLineItem
type.
- Added the
- [GraphQL API] Changed the
CustomLineItemDraft
type:- Input field
key
was added toCustomLineItemDraft
type.
- Input field
The following changes were introduced in terms of GraphQL SDL:
extend type CustomLineItemDraftOutput {
key: String
}
extend type CustomLineItem {
key: String
}
extend input AddCartCustomLineItem {
key: String
}
extend input AddStagedOrderCustomLineItem {
key: String
}
extend input CustomLineItemDraft {
key: String
}