Skip to content

Commit

Permalink
ensure syntax is correct (#6585)
Browse files Browse the repository at this point in the history
  • Loading branch information
jharrell authored Jan 10, 2025
1 parent e9902b4 commit d156fd4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1230,7 +1230,7 @@ For example, the following query returns `User` that meet the following criteria
- No posts with more than 100 views
- All posts have less than, or equal to 50 likes

```ts highlight=3-14;normal
```ts
const users = await prisma.user.findMany({
where: {
//highlight-start
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4841,7 +4841,7 @@ const product = await prisma.product.findFirst({
where: {
photos: {
every: {
height: 100,
height: 200,
}
}
},
Expand Down

0 comments on commit d156fd4

Please sign in to comment.