typeorm-cursor-pagination
typeorm-cursor-pagination copied to clipboard
Cursor-based pagination works with TypeORM Query Builder.
Hi Benjamin, you have added the field paginationUniqueKey. This appears to result in missing rows when paging through a collection. My class does not have a single column as a...
Hello! I'm a maintainer on a project https://github.com/lacuna-tech/mds-core which utilizes this library, and first off would like to thank you for putting this together! It definitely makes pagination with TypeORM...
Regarding issue https://github.com/benjamin658/typeorm-cursor-pagination/issues/4 , I made a change that solves missing `order by` from our query builder in the main query.
'OR' directive will group the other directives (AND) in the where clause, so if 'OR' directive exists, paging 'AND' condition should be added in every directive group.
+ for some reason decodeByType was handling objects and dates the same + in my scenario the branded id was an abject that needed to be treated differently than a...
Hi So my ids are branded to avoid miss-assignments What that means is that instead of passing string is the type (uuid format) i am passing my custom type which...
this is a normal query join that works fine: ` const res = await this.repo.createQueryBuilder('courierSheet') .leftJoinAndSelect('courierSheet.sheetOrders', 'sheetOrders').execute();` This is paginator code: ` const queryBuilder = this.repo.createQueryBuilder('courierSheet') .leftJoinAndSelect('courierSheet.sheetOrders', 'sheetOrders'); const paginator...
This PR was automatically created by Snyk using the credentials of a real user.Snyk has created this PR to fix one or more vulnerable packages in the `npm` dependencies of...