We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 66c24ca + 8877e62 commit 39eac1fCopy full SHA for 39eac1f
libs/json-api-nestjs/src/lib/mixin/service/typeorm/methods/get-all/get-all.ts
@@ -188,10 +188,9 @@ export async function getAll<T>(
188
resultBuilder.andWhere(expression);
189
resultBuilder.setParameters(params ? {[params.name]: params.val} : {});
190
}
191
+ result = await resultBuilder.getRawMany();
192
193
- result = await resultBuilder.getRawMany();
194
-
195
const callQuery = Date.now() - startTime;
196
197
const entityArray: T[] = this.transform.transformRawData(result);
0 commit comments