Pagination / Filtering / Sorting
text
GET /v1/users?page=2&limit=10&sort=-createdAt&role=userđŻ Result{ "items": [ { "id": "u_11" }, { "id": "u_12" } ], "page": 2, "limit": 10, "total": 42 }
Tip Cursor-based pagination performs better and gives you more consistency.