rails db:create
rails db:migrate
rails db:seed
run rspec
$ rspec
bundle install rails server
http://localhost:3000/graphiql
to query all vehicles, makes and models
makes {
name
models {
name
options {
color
doorCount
drivetrain
fuelType
style
transmission
}
}
vehicles {
plateState
year
vin
}
}
}
If you are looking for more indepth, parsed out commits, the original API was developed under the repo Vehicle API and then improved upon in this repository.