Is your feature request related to a problem?
Pagination is implemented on the frontend, but requests to the backend lack pagination parameters. This means the backend's pagination support is ignored, resulting in fetching the entire dataset instead of paginated results.
Describe the solution you'd like
Implement pagination parameters in requests to the backend to utilize pagination support:
- Add parameters to the request for page number and size
- Ensure the backend processes these parameters correctly
- Test to confirm only paginated results are returned
Original issue
Describe the bug
Although pagination is implemented on the frontend, the requests sent to the backend do not include any pagination parameters. As a result, the backend pagination support is not being utilized, and the full dataset is being fetched instead of paginated results.
Is your feature request related to a problem?
Pagination is implemented on the frontend, but requests to the backend lack pagination parameters. This means the backend's pagination support is ignored, resulting in fetching the entire dataset instead of paginated results.
Describe the solution you'd like
Implement pagination parameters in requests to the backend to utilize pagination support:
Original issue
Describe the bug
Although pagination is implemented on the frontend, the requests sent to the backend do not include any pagination parameters. As a result, the backend pagination support is not being utilized, and the full dataset is being fetched instead of paginated results.