28 October 2025
CartsMessages/SubscriptionsGraphQL
We've added the
CartFrozen and CartUnfrozen Messages which are triggered when the corresponding update actions are applied to a Cart.Changes:
- [API] Added the CartFrozen Message.
- [API] Added the CartUnfrozen Message.
- [GraphQL API] Added the following types to the GraphQL schema:
CartFrozen,CartUnfrozen.
The following changes were introduced in terms of GraphQL SDL:
type CartFrozen implements MessagePayload {
type: String!
}
type CartUnfrozen implements MessagePayload {
type: String!
}