13 April 2023
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: CustomFieldsType
shippingKey: String
}
extend type Order {
shippingCustomFields: CustomFieldsType
shippingKey: String
}