electricVehicles
All electric vehicle types and their details.
Deprecation
The 'electricVehicles' field is deprecated.Please use 'flexSupportedDevices' instead.
- Marked as deprecated on 2026-04-15.
- Scheduled for removal on or after 2026-10-15.
Arguments
Only return vehicles that are currently integrated.
Only return vehicle types for the specified make.
Only return vehicle types supported by the specified provider, e.g. Tesla.
Returns
[ElectricVehicleType]Possible Errors
Allowed Viewers
Required Permissions
(No)Query Complexity
1Examples
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 ElectricVehicles(
$isIntegrationLive: Boolean,
$make: String,
$supportedProvider: ProviderChoices
) {
electricVehicles(
isIntegrationLive: $isIntegrationLive,
make: $make,
supportedProvider: $supportedProvider
) {
make
models {
...ElectricVehicleModelTypeFragment
}
}
}
Variables
{
"isIntegrationLive": true,
"make": "couple-personal-close-win-kitchen",
"supportedProvider": "BMW"
}
Response
{
"data": {
"electricVehicles": [
{
"make": "tree-rock-paper-energy-money",
"models": [ElectricVehicleModelType]
}
]
}
}