extendedAnnualElectricityConsumption
The annual electricity consumption data for an MPAN, breaking down by day and night consumption, if available.
Arguments
The MPAN of the meterpoint to return.
Possible Errors
Allowed Viewers
Required Permissions
Can query annual consumptionQuery Complexity
5Examples
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 ExtendedAnnualElectricityConsumption($mpan: String!) {
extendedAnnualElectricityConsumption(mpan: $mpan) {
eacDay
eacNight
eacStandard
}
}
Variables
{
"mpan": "crime-wish-development-media-entire"
}
Response
{
"data": {
"extendedAnnualElectricityConsumption": {
"eacDay": 166.29,
"eacNight": 77.39,
"eacStandard": 587.65
}
}
}