4 February 2026
CartsProject configurationLimitsGraphQL
We have fixed a bug in the setDeleteDaysAfterLastModification Shopping List update action that allowed
deleteDaysAfterLastModification to be removed. The update action now behaves the same as the setDeleteDaysAfterLastModification Cart update action. If the update action does not specify deleteDaysAfterLastModification, the Shopping List uses the value from the project configuration.Changes:
- [API] Changed the CartsConfiguration field
deleteDaysAfterLastModificationto be non-optional - [API] Changed the ShoppingListsConfiguration field
deleteDaysAfterLastModificationto be non-optional - [GraphQL API]
ShoppingListsConfiguration.deleteDaysAfterLastModificationfield type changed fromInttoInt! - [GraphQL API]
CartsConfiguration.deleteDaysAfterLastModificationfield type changed fromInttoInt!
The following changes were introduced in terms of GraphQL SDL:
extend type ShoppingListsConfiguration {
deleteDaysAfterLastModification: Int!
}
extend type CartsConfiguration {
deleteDaysAfterLastModification: Int!
}