bruno
bruno copied to clipboard
get totlat count when using limit and page
Hi, is it posible to get totatal records count when aplied limit and page?
I have the same question as above.
Greetings! Unfortunately, the only way to accomplish retrieving the total records count is to run a second query that fetching all records and count the results. This is due to the underlying database layer not returning the total records in a table, but rather the number of records that matched your query.
Maybe my answer to this similar issue (https://github.com/esbenp/bruno/issues/37) helps someone