quoteRequest
Retrieve a quote request by its code.
Arguments
Code of the quote request.
Returns
QuoteRequestExamples
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 QuoteRequest($quoteCode: String!) {
quoteRequest(quoteCode: $quoteCode) {
code
createdAt
electricitySupplyPoints {
...ElectricitySupplyPointFragment
}
gasSupplyPoints {
...GasSupplyPointFragment
}
termsAndConditions {
...TermsAndConditionsFragment
}
}
}
Variables
{
"quoteCode": "positive-collection-dinner-activity-current"
}
Response
{
"data": {
"quoteRequest": {
"code": "turn-nature-identify-gas-suggest",
"createdAt": "1990-01-04T20:50:41.979122+00:00",
"electricitySupplyPoints": [ElectricitySupplyPoint],
"gasSupplyPoints": [GasSupplyPoint],
"termsAndConditions": [TermsAndConditions]
}
}
}