10 February 2023
GraphQLQuotesB2B
Quote Requests, Staged Quotes, and Quotes now support Reference Expansion on Business Unit in the GraphQL API.
Changes:
- [GraphQL API] Changed the
StagedQuotetype:- Added the
businessUnitReffield to theStagedQuotetype. StagedQuote.businessUnitfield type changed fromKeyReferencetoBusinessUnit
- Added the
- [GraphQL API] Changed the
Quotetype:- Added the
businessUnitReffield to theQuotetype. Quote.businessUnitfield type changed fromKeyReferencetoBusinessUnit
- Added the
- [GraphQL API] Changed the
QuoteRequesttype:- Added the
businessUnitReffield to theQuoteRequesttype. QuoteRequest.businessUnitfield type changed fromKeyReferencetoBusinessUnit
- 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
}