Hi!
We are developing a web application showing data queried from a SG view using public REST API.
Data is displayed by a table with paging (DataTables).
Paging needs information about total rows, so we tried to use the QueryResult’s total_rows value, as it has the following description on the API explorer: “Number of documents in the database. This number is not the number of rows returned.”
Our main problem that this seems to be inaccurate.
When querying the view (which was created by SG admin REST API) with skip and limit parameters, the total_rows value always equals to the number of returned rows.
This means the table always shows it has only 1 page.
I did some research on the SG project on GitHub and I found a related issue.
This helped me understand the problem better, but I cannot say I agree with the current solution.
Reading the following line, it is clear, that total_rows does equal to the number of returned rows, despite stating the opposite on API explorer:
I think SG should follow the Server’s formula on this, which - I think - would be another problem, since the server request made by SG only returns a total_rows value without channel filtering (obviously).
There could have been another solution for our problem: creating the same view with reduce (_count) function for requesting count separately, but the public (SG) REST API could not serve queries for views with reduce functions correctly.
Could you confirm, that calculating total_rows on SG view querying needs some redesign (or the API documentation is incorrect)?
Is there any alternative for us to query the count?
Regards,
Levente