batteryVariants
All supported batteries and their details.
Arguments
Only return batteries of a specific make.
Returns
[BatteryVariantsType]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 BatteryVariants($make: String) {
batteryVariants(make: $make) {
make
models {
...BatteryVariantModelsTypeFragment
}
}
}
Variables
{
"make": "especially-responsibility-here-business-get"
}
Response
{
"data": {
"batteryVariants": [
{
"make": "box-together-century-off-get",
"models": [BatteryVariantModelsType]
}
]
}
}