29 March 2022
OrdersExtensibilityGraphQL
You can now add Custom Fields when you Create an Order from a Cart.
With this, you can now store additional information, like payment reference, to your Order during checkout if required for your business logic.
Changes:
- [API] Added optional 
customfield to OrderFromCartDraft. - [GraphQL API] Changed the 
OrderCartCommandtype:- Added the 
customfield toOrderCartCommandtype. 
 - Added the 
 
The following changes were introduced in terms of GraphQL SDL:
extend input OrderCartCommand {
  custom: CustomFieldsDraft
}