##Pagination, for avoiding queries which respond with millions of docs on api implemetations.
- The response can be chucked with limits, say 20, we can make our endpoint to accept limit=20.
- On the backend we can continue qurying consequent docs with options like { limit: 20, skip: 20}.
- The continious increase of 'skip' by 20 will provide us the next set of records.