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
shippingCustomFieldsfield to Cart and Order. - [API] Added the
shippingKeyfield to Cart and Order. - [GraphQL API] Changed the
Carttype:- Added the
shippingKeyfield to theCarttype. - Added the
shippingCustomFieldsfield to theCarttype.
- Added the
- [GraphQL API] Changed the
Ordertype:- Added the
shippingKeyfield to theOrdertype. - Added the
shippingCustomFieldsfield to theOrdertype.
- Added the
The following changes were introduced in terms of GraphQL SDL:
extend type Cart {shippingCustomFields: CustomFieldsTypeshippingKey: String}extend type Order {shippingCustomFields: CustomFieldsTypeshippingKey: String}