All Release Notes
Added Customer Deleted Message
29 September 2021
Enhancement
CustomersMessagesGraphQL
We have added a specific Message that is published by the platform whenever a Customer got deleted. That means, you can now subscribe to this particular message and do not need to use the generic ChangeSubscription anymore to implement such use cases.
Changes:
- [API] Added
CustomerDeleted
Message type. - [GraphQL API] Added the following types to the GraphQL schema:
CustomerDeleted
.
The following changes were introduced in terms of GraphQL SDL:
type CustomerDeleted implements MessagePayload {type: String!}