I am writing a GET request (using Angular 10, Spring boot, & Postgres). It does a 'Get' request to fetch 3357 records from a database. Then, it renders it to the UI
return this.http.get<IFileMetadata[]>(this.resourceUrl, { params: options, observe: 'response' });
The problem is that it only shows 2000 records in the UI, which is not correct, as it should be 3357 records.
Is there any limit for the number of rows that can be returned in a 'Get' request?