Skip to content

Commit 27fc038

Browse files
tuliomolinaSvetlozar
authored andcommitted
docs: update select-query-builder.md (typeorm#6681)
Found a typo on the "Adding WHERE expression" section: user.firstName is used in the SQL snippet where you actually meant user.id
1 parent 319b8bc commit 27fc038

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/select-query-builder.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ createQueryBuilder("user")
342342
Which will produce the following SQL query:
343343

344344
```sql
345-
SELECT ... FROM users user WHERE user.firstName IN (1, 2, 3, 4)
345+
SELECT ... FROM users user WHERE user.id IN (1, 2, 3, 4)
346346
```
347347

348348

0 commit comments

Comments
 (0)