Skip to main content

Arguments

quoteCode : String! required

Code of the quote request.

Returns

QuoteRequest

Allowed Viewers

Customer Partner User Third party

Query Complexity

1

Examples

The example data in the variables and responses below are autogenerated values designed to resemble real inputs. They do not represent actual customer data, and in some cases may require additional validation.

Query

query QuoteRequest($quoteCode: String!) { quoteRequest(quoteCode: $quoteCode) { code createdAt electricitySupplyPoints { ...ElectricitySupplyPointFragment } gasSupplyPoints { ...GasSupplyPointFragment } termsAndConditions { ...TermsAndConditionsFragment } } }

Variables

{ "quoteCode": "discussion-night-common-smile-term" }

Response

{ "data": { "quoteRequest": { "code": "form-develop-white-religious-such", "createdAt": "1971-09-24T01:03:05.409369+00:00", "electricitySupplyPoints": [ElectricitySupplyPoint], "gasSupplyPoints": [GasSupplyPoint], "termsAndConditions": [TermsAndConditions] } } }