nestjs-typeorm-paginate icon indicating copy to clipboard operation
nestjs-typeorm-paginate copied to clipboard

:page_with_curl: Pagination response object function + types for typeorm + nestjs

Results 65 nestjs-typeorm-paginate issues
Sort by recently updated
recently updated
newest added

Hello all When making queries order by on SQLServer, method countQuery need set orderBy to undefined to get expected result ``` const queryBuilder = this.fakultasRepository.createQueryBuilder('fakultas) .innerJoin(ProgramStudiEntity, 'programStudi', 'fakultas.idProdi = programStudi.id')...

Actual fix for #614 Note that you have both yarn.lock & package-lock.json. One should be removed. Chalk v5 broke postinstall script.

Example TypeORM Query with working expected results: ```ts // Getting all Res1 records for a user with ${username} but only for the latest series identified with `seriesId` const typeormQuery =...

I have the following query I would like to get the facilities along with the AVG review of each when done like this **WITHOUT** the pagianteRaw or pagiante function it...

In my project, I use: ```typescript app.useGlobalInterceptors( new ClassSerializerInterceptor(app.get(Reflector), { excludeExtraneousValues: true, }), ); ``` `excludeExtraneousValues: true` is a secure practice that enforces the use of explicit `@Expose()` from `class-transformer`...

The below error occurs while using a query builder with join (tried inner and left join). And, this occurs only in v3.1.3 and not in v3.1.2. ``` code: 'ER_DUP_FIELDNAME', errno:...

Instead of paginating via page, use entity id instead to get the next 10 of object id

feature

Is there any way to use this with GraphQL? Currently, i am not able to select the correct Query Return Object

Hello As we all know offset and limit based pagination have performance issue in large amount of data. I think the best solution is Cursor-based pagination. Do you have any...

Bumps [typeorm](https://github.com/typeorm/typeorm) from 0.3.6 to 0.3.10. Release notes Sourced from typeorm's releases. 0.3.10 Bug Fixes "Cannot commit, no transaction is active" error in sql.js (#9234) (749809a), closes #9100 add missing...

dependencies