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.
1 parent 6433141 commit 1b09f2dCopy full SHA for 1b09f2d
packages/query-typeorm/src/services/typeorm-query.service.ts
@@ -115,7 +115,7 @@ export class TypeOrmQueryService<Entity>
115
qb.withDeleted()
116
}
117
118
- // Check if we have any relation that could cause the same record to be returned twice, if not than we create
+ // Check if we have any relation that could cause the same record to be returned twice, if not then we create
119
// our own count as TypeORM still decides to add "DISTINCT" to it, which makes it slow
120
if (qb.expressionMap.joinAttributes.some((join) => join.isMany)) {
121
// If we have relations than do what TypeORM does
0 commit comments