Skip to main content

Deprecation of heatPumpVariants, chargePointVariants, and electricVehicles queries

Action Required Upcoming Change
April 24, 2026, 8:49 p.m.

The following GraphQL queries are now deprecated and will be removed on October 15th, 2026:

  • heatPumpVariants
  • chargePointVariants
  • electricVehicles

Replacement

Please use the flexSupportedDevices query instead, which provides a unified interface for discovering all supported device types (heat pumps, charge points, and electric vehicles).

Migration example

Where you previously called:

query {
  heatPumpVariants { make models { model powerInKw } }
  chargePointVariants { make models { model powerInKw } }
  electricVehicles { make models { model } }
}

Use flexSupportedDevices with the deviceType argument instead:

query {
  flexSupportedDevices(deviceType: HEAT_PUMPS) {
    deviceType
    supportedMakes {
      make
      models { modelName }
    }
  }
}

Timeline

Deprecated: April 15th, 2026
Removal: October 15th, 2026