lucasrochagit / nest-mongo-query-parser

A MongoDB query string parser to be used in applications developed with NestJS.
Apache License 2.0
12 stars 8 forks source link

How to display pagination #17

Closed j-vitali closed 7 months ago

j-vitali commented 7 months ago

I would like to have something like thin in service:

 return {
      data: queryData,
      pagination: {
        currentPage: query.page,
        totalPages: query.totalPages,
        totalRecords: query.totalRecords,
      },
    };