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