All Release Notes
Improvements to working with Business Units in the GraphQL API
10 February 2023
Composable Commerce
HTTP API
Enhancement
GraphQLQuotesB2B
Quote Requests, Staged Quotes, and Quotes now support Reference Expansion on Business Unit in the GraphQL API.
Changes:
- [GraphQL API] Changed the
StagedQuote
type:- Added the
businessUnitRef
field to theStagedQuote
type. StagedQuote.businessUnit
field type changed fromKeyReference
toBusinessUnit
- Added the
- [GraphQL API] Changed the
Quote
type:- Added the
businessUnitRef
field to theQuote
type. Quote.businessUnit
field type changed fromKeyReference
toBusinessUnit
- Added the
- [GraphQL API] Changed the
QuoteRequest
type:- Added the
businessUnitRef
field to theQuoteRequest
type. QuoteRequest.businessUnit
field type changed fromKeyReference
toBusinessUnit
- Added the
The following changes were introduced in terms of GraphQL SDL:
extend type StagedQuote {businessUnitRef: KeyReference}extend type Quote {businessUnitRef: KeyReference}extend type QuoteRequest {businessUnitRef: KeyReference}