(params: T = {} as T)
| 89 | } |
| 90 | |
| 91 | static processObjectParams<T extends Dictionary>(params: T = {} as T): T { |
| 92 | Utils.getObjectQueryKeys(params).forEach(k => { |
| 93 | params[k as keyof T] = QueryHelper.processParams(params[k as keyof T]); |
| 94 | }); |
| 95 | |
| 96 | return params; |
| 97 | } |
| 98 | |
| 99 | /** |
| 100 | * converts `{ account: { $or: [ [Object], [Object] ] } }` |
no test coverage detected