Skip to content

Latest commit

 

History

History
44 lines (33 loc) · 931 Bytes

README.md

File metadata and controls

44 lines (33 loc) · 931 Bytes

Books distributor

Rails API demo application

Specifications

Given

  • Publishers produce books that are sold in shops
  • A book can be distributed via multiple shops
  • A shop can sell multiple copies of a book

API

Endpoint 1: for a specific Publisher it should return the list of shops selling at least one book of that publisher. Shops should be ordered by the number of books sold. Each shop should include the list of Publisher's books that are currently in stock.

Example response:

{
  "shops": [
   {
     "id": 1,
     "name": "Amazon",
     "books_sold_count": 10,
     "books_in_stock": [
       {
         "id": 2,
         "title": "Yiddish songs",
         "copies_in_stock": 3
       },
       
     ]
   },
   
 ]
}

Endpoint 2: for a specific Shop it should mark one or multiple copies of a book as sold.

Development

Docker development environment