estimatedElectricityConsumption
Fetch the estimated electricity consumption for a given MeLo at a given time period in kWh.
Arguments
The account number.
The end date (inclusive) for calculating the estimated electricity consumption.
The MeLo number.
The start date for calculating the estimated electricity consumption.
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 EstimatedElectricityConsumption(
$accountNumber: String!,
$endDate: Date!,
$meloNumber: String!,
$startDate: Date!
) {
estimatedElectricityConsumption(
accountNumber: $accountNumber,
endDate: $endDate,
meloNumber: $meloNumber,
startDate: $startDate
)
}
Variables
{
"accountNumber": "A-798509D0",
"endDate": "2017-08-17",
"meloNumber": "grow-camera-protect-into-perhaps",
"startDate": "1976-05-07"
}
Response
{
"data": {
"estimatedElectricityConsumption": "1.0"
}
}