Skip to main content

Arguments

isIntegrationLive : Boolean

Only return vehicles that are currently integrated.

make : String

Only return vehicle types for the specified make.

supportedProvider : ProviderChoices

Only return vehicle types supported by the specified provider, e.g. Tesla.

Allowed Viewers

Customer Partner User Third party

Required Permissions

(No)

Query Complexity

1

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

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] } ] } }