creating a new custom method doesn't give the same signature as the inherited getOneBase
@GET()
findOne(@Req() req: any){
// won't work as expected, and all queries must be implemented manually, such as filter, ...
// there is no exposed functionality to convert req into parsed req, even `(@ParsedReq() req)` gives undefined
return this.base.getOneBase(req)
}
I want to include the soft deleted rows for all
getOneBase
operations, but notgetManyBase
also, ...
creating a new custom method doesn't give the same signature as the inherited getOneBase