VehicleModel
A brand and model combination a vehicle can have, e.g. Ford / Fiesta.
type VehicleModel {
brand: String!
category: VehicleCategory
id: VehicleModelID!
name: String!
}
Fields
VehicleModel.brand ● String! non-null scalar
Name of the brand, e.g. Ford.
VehicleModel.category ● VehicleCategory enum
Category this model belongs to. null if the model is not categorised in the fleet management.
VehicleModel.id ● VehicleModelID! non-null scalar
Unique identifier of this vehicle model.
VehicleModel.name ● String! non-null scalar
Name of the model, e.g. Fiesta.
Returned By
vehicleModels query
Member Of
Vehicle object