getWinterGasComparison
Get gas consumption comparison data for a specific account and property.
Arguments
Returns
WinterGasComparisonResultTypePossible Errors
Allowed Viewers
Query Complexity
6Examples
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 GetWinterGasComparison(
$accountNumber: String!,
$propertyId: Int!
) {
getWinterGasComparison(
accountNumber: $accountNumber,
propertyId: $propertyId
) {
winterGasComparison {
...WinterGasComparisonTypeFragment
}
}
}
Variables
{
"accountNumber": "A-A61EDEBA",
"propertyId": 31873629
}
Response
{
"data": {
"getWinterGasComparison": {
"winterGasComparison": [WinterGasComparisonType]
}
}
}