()
| 178 | } |
| 179 | |
| 180 | override unwrap(): any { |
| 181 | return Utils.getObjectQueryKeys(this.payload).reduce((o, field) => { |
| 182 | o[field as string] = this.payload[field].unwrap(); |
| 183 | return o; |
| 184 | }, {} as Dictionary); |
| 185 | } |
| 186 | |
| 187 | override willAutoJoin(qb: IQueryBuilder<T>, alias?: string, options?: ICriteriaNodeProcessOptions): boolean { |
| 188 | const nestedAlias = qb.getAliasForJoinPath(this.getPath(options), options); |
no test coverage detected