Farzad6049

Results 1 comments of Farzad6049

a temporary solution: ``` @Override('updateOneBase') updateOne(@ParsedRequest() req: CrudRequest, @ParsedBody() dto) { const newReq = _.cloneDeep(req) newReq.options.query.join = {} return this.service.updateOne(newReq, dto) } ``` I use lodash to copy req object...