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

Pagination and filtering helper method for TypeORM repositories or query builders using Nest.js framework :book::paperclip:

Results 119 nestjs-paginate issues
Sort by recently updated
recently updated
newest added
trafficstars

Added test case to demonstrate the TypeError that occurs when using nullSort with relations. The test uses CatEntity and its toys relation to replicate the issue where attempting to sort...

For a specific case, I need to get the raw data without being transformed via TypeORM. Is this achievable?

Hello there :wave: I'm using nestjs-paginate for my project, and as far as it goes everything is perfect, except this one thing : I'm trying to sort my data by...

At the moment, since filtering on relations act as a simplified left join, if the requested relation is null, the results are not included. I think it's not the right...

For exemple, if I filter my `cats` by `toys.name=$not:$eq:pillow`, if some of the cats have a toy whose name is `pillow`, they will still appear in the filtered results, only...

### Problem: The extractVirtualProperty function does not correctly retrieve metadata for virtual properties defined on the inverse side of a OneToOne relationship. Specifically, when accessing a virtual column like fullName...

package.json ```json { "@nestjs/common": "^9.0.0", "typeorm": "^0.3.17", "nestjs-paginate": "^9.0.0", } ``` customer.entity.ts ```typescript @Entity() export class Customer { ... @Column({ type: 'json', default: {} }) customFields: any; ... } ```...

When processing the Swagger definition to generate Golang SDK using the [Swagger codegen](https://github.com/swagger-api/swagger-codegen) we encountered two issues: 1. The definition of the `sortBy` property of the `PaginatedMetaDocumented` class contains the...

When we want to run pagination on the view entity without ID, and has 2 primary keys, when active load relation on primary keys relation, the result data field is...