Nemesis-AS / bookmark-manager-rs

[WIP] A simple yet robust bookmark manager with tagging support
MIT License
1 stars 0 forks source link

Add Pagination #1

Open Nemesis-AS opened 2 months ago

Nemesis-AS commented 2 months ago

The application would need to work with a large number of bookmarks and tags. Hence, pagination is necessary for the following routes:

  1. GET /bookmarks
  2. GET /bookmarks/tag/{tag}
  3. GET /tags
Nemesis-AS commented 2 months ago

Pagination has been added for routes 1. and 3. in 3c305032799505e44da6b1364c1621264e8bbc15

As for route 2, pagination is difficult since the filtering is happening after DB retrieval