5 May 2023
GraphQLB2B
The GraphQL API now supports querying inherited Stores of a Business Unit. Visit the API reference for more information on additional GraphQL fields available on Business Units.
Changes:
- [GraphQL API] Changed the 
BusinessUnittype:- Added the 
inheritedStoresfield to theBusinessUnittype. 
 - Added the 
 
The following changes were introduced in terms of GraphQL SDL:
extend type BusinessUnit {
  "This field contains the inherited stores from its parentUnit if storeMode is set to FromParent."
  inheritedStores: [InheritedStore!]
}
"BETA: This feature can be subject to change and should be used carefully in production. https://docs.commercetools.com/api/contract#public-beta"
type InheritedStore {
  store: Store
  storeRef: KeyReference!
}