1 December 2022
Product catalogAudit Log
We have extended the abilities of Audit Log to include tracking of changes made on a Store's Product Selections. With this enhancement, all Product Selection-related Changes performed on Stores are tracked from now on and these Changes are now retrievable via API.
Changes:
- [API] Added support for update actions
addProductSelection
,removeProductSelection
, andchangeProductSelectionActive
on Stores. - [GraphQL API] Added
addProductSelection
,removeProductSelection
, andchangeProductSelectionActive
toStoreChangeInput
. - [GraphQL API] Added
addProductSelection
,removeProductSelection
, andchangeProductSelectionActive
toResourceChangeInput
. - [GraphQL API] Added
productSelection
field toStoreChange
.
The following changes were introduced in terms of GraphQL SDL:
enum StoreChangeInput {
...
changeProductSelectionActive
addProductSelection
removeProductSelection
}
enum ResourceChangeInput {
...
changeProductSelectionActive
addProductSelection
removeProductSelection
}
type StoreChange implements Change {
...
productSelection: Reference
}