Skip to content

Commit

Permalink
Updated Operators typo (#754)
Browse files Browse the repository at this point in the history
Updated the typo in the Operators page
  • Loading branch information
devharipragaz007 authored May 21, 2024
1 parent 3f5278c commit 0884468
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/querying/operators.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ SELECT * FROM "posts" WHERE "commentCount" < 10;
```ts
Post.findAll({
where: {
commentCount: { [Op.gte]: 10 },
commentCount: { [Op.lte]: 10 },
},
});
```
Expand Down

0 comments on commit 0884468

Please sign in to comment.