Vjp888 / mount_olympus_api

A tech challenge for to organize historic data from previous Olympic Games
1 stars 0 forks source link

GET api/v1/olympians?age=oldest #12

Closed Vjp888 closed 5 years ago

Vjp888 commented 5 years ago

This should return the oldest olympian in the data set, if multiple return by name order

GET api/v1/olympians?age=oldest

//Response Format

{
  [
    {
      "name": "Julie Brougham",
      "team": "New Zealand",
      "age": 62,
      "sport": "Equestrianism"
      "total_medals_won": 0
    }
  ]
}