gid-oss / dataui-nestjs-crud

NestJs CRUD for RESTful APIs
https://github.com/nestjsx/crud/wiki
MIT License
124 stars 32 forks source link

withDeleted not working with relations #4

Closed yepes closed 2 years ago

yepes commented 2 years ago

When using with deleted from the query builder

.setIncludeDeleted(1)

the relations included via @Crud decorator are not being fetched if they have been deleted.

This is because builder.withDeleted(); is being called after the joins are created.

zaro commented 2 years ago

@yepes Thank you for the PR :) 5.2.0-alpha.4 is published,

yepes commented 2 years ago

great!