BestBuy / api-playground

The Best Buy API Playground is an API training tool for students, educators and other learners to explore the possibilities of a fully functional RESTful API in a simple, non-production environment.
Other
260 stars 104 forks source link

Response Body is showing only 10 records eventhouth there are more than that availbale in the sql query. #21

Open daxtech2016 opened 4 years ago

daxtech2016 commented 4 years ago

Here In response body we can clearly see that there are total 87 no. of records and we can see only 10 records out of it, How can I see rest 77 records?

Get Request : http://localhost:3030/products/?name[$like]=*star+wars*&price[$lt]=30&$select=name&$select=price

Response body: { "total": 87, "limit": 10, "skip": 0, "data": [ { "name": "LEGO Star Wars: The Complete Saga - PRE-OWNED - Nintendo DS", "price": 9.99 }, { "name": "Star Wars The Clone Wars: Republic Heroes - PRE-OWNED - Nintendo DS", "price": 9.99 }, { "name": "Star Wars Battlefront: Elite Squadron - PRE-OWNED - Nintendo DS", "price": 9.99 }, { "name": "LEGO Star Wars III: The Clone Wars - Xbox 360", "price": 19.99 }, { "name": "Star Wars: The Force Unleashed II — PRE-OWNED - Nintendo Wii", "price": 9.99 }, { "name": "Star Wars: The Force Unleashed II - PRE-OWNED - PlayStation 3", "price": 9.99 }, { "name": "Star Wars: The Force Unleashed II - PRE-OWNED - Nintendo DS", "price": 9.99 }, { "name": "EA - Star Wars: The Old Republic 2400 Cartel Coins Card for Windows", "price": 19.99 }, { "name": "LEGO Star Wars III: The Clone Wars - PRE-OWNED - Xbox 360", "price": 9.99 }, { "name": "LEGO Star Wars III: The Clone Wars - PRE-OWNED - Nintendo 3DS", "price": 9.99 } ] }