1 December 2022
GraphQLPricing and Discounts
We understood there is a demand to retrieve the full information about the Channel and the Customer Group on Standalone Prices instead of just the reference to those via the GraphQL API. Before, additional API calls were needed to retrieve the respective information, from now on just one query is sufficient for this use case.
Changes:
- [GraphQL API] Changed the 
StandalonePricetype:- Added the 
channelfield to theStandalonePricetype. - Added the 
customerGroupfield to theStandalonePricetype. 
 - Added the 
 
The following changes were introduced in terms of GraphQL SDL:
extend type StandalonePrice {
  channel: Channel
  customerGroup: CustomerGroup
}