All Release Notes
Added 'shippingCustomFields' and 'shippingKey' fields on Cart and Order
13 April 2023
Composable Commerce
HTTP API
Enhancement
CartsOrdersGraphQL
You can now retrieve the shippingCustomFields
and shippingKey
fields on Carts and Orders with Single
ShippingMode.
Changes:
- [API] Added the
shippingCustomFields
field to Cart and Order. - [API] Added the
shippingKey
field to Cart and Order. - [GraphQL API] Changed the
Cart
type:- Added the
shippingKey
field to theCart
type. - Added the
shippingCustomFields
field to theCart
type.
- Added the
- [GraphQL API] Changed the
Order
type:- Added the
shippingKey
field to theOrder
type. - Added the
shippingCustomFields
field to theOrder
type.
- Added the
The following changes were introduced in terms of GraphQL SDL:
extend type Cart {shippingCustomFields: CustomFieldsTypeshippingKey: String}extend type Order {shippingCustomFields: CustomFieldsTypeshippingKey: String}