All Release Notes
Added Price Selection to Product Projection Search on GraphQL API
22 December 2021
Enhancement
GraphQLSearchProduct Catalog
The Product Projection Search feature on the GraphQL API now supports Price Selection.
Changes:
- [GraphQL API] Added the following types to the GraphQL schema:
ScopedPrice. - [GraphQL API] Changed the
ProductSearchVarianttype:- Added the
scopedPricefield to theProductSearchVarianttype. - Added the
scopedPriceDiscountedfield to theProductSearchVarianttype.
- Added the
- [GraphQL API] Changed the
PriceSelectorInputtype:PriceSelectorInput.dateinput field type changed fromDateTime!toDateTime
The following changes were introduced in terms of GraphQL SDL:
extend type ProductSearchVariant {scopedPrice: ScopedPricescopedPriceDiscounted: Boolean}type ScopedPrice {id: String!value: BaseMoney!currentValue: BaseMoney!country: StringcustomerGroupRef: ReferencecustomerGroup: CustomerGroupchannelRef: Referencechannel: ChannelvalidFrom: DateTimevalidUntil: DateTimediscounted: DiscountedProductSearchPriceValuecustom: CustomFieldsType}