You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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)
}
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: