## Notes
- [x] Define next steps for MVP
### Brainstorm
From the perspective of the UI, I just want to query an endpoint to get the next available restaurant for a game. Personally I could see this being either a GET request or a POST request.
A POST request would make sense in the eyes of an API consumer because we're not getting the next restaurant by ID--we don't know the ID. It wouldn't make sense from a RESTful protocol because a resource is not being idempotentally (idempotentically?) updated. The update is not idempotent because repeating the same request will result in different responses.
A GET request would NOT make sense from a RESTful protocol because we are not fetching by ID.
### Database
Restaurants table needs
## LinkedIn Post