7 November 2022
GraphQLQuotes
We made a correction to the
ChangeQuoteState type in the GraphQL API. The type of the input field quoteState was incorrectly marked as MyQuoteState instead of QuoteState. This caused certain QuoteStates, for example, the Withdrawn state, to be unavailable through the GraphQL API. With this correction in place, the ChangeQuoteState type now supports all QuoteStates in GraphQL.Changes:
- [GraphQL API] Changed the
ChangeQuoteStatetype:ChangeQuoteState.quoteStateinput field type changed fromMyQuoteState!toQuoteState!