20 August 2021
LimitsProject configurationGraphQLProduct catalog
To ensure best performance for your queries we have now limited the Channel settings for Stores.
From now on each of your Stores can have
- up to 100 Inventory Supply Channels and
 - up to 100 Product Distribution Channels
 
by default.
These default limits can be increased if needed after we have reviewed the performance impact on your project. To request a limit increase, please contact the Composable Commerce support team, specifying your project region, project key and your use case.
- 
[API] Added limit validation on the following endpoints:
It means that API calls leading to exceeding these limits will now fail with a 400 Bad RequestMaxResourceLimitExceedederror. - 
[GraphQL API] Changed the
StoreLimitsProjectiontype:- Added the 
productDistributionChannelsfield to theStoreLimitsProjectiontype. - Added the 
inventorySupplyChannelsfield to theStoreLimitsProjectiontype. 
 - Added the 
 
The following changes were introduced in terms of GraphQL SDL:
extend type StoreLimitsProjection {
  inventorySupplyChannels: Limit!
  productDistributionChannels: Limit!
}