diff --git a/content/200-orm/200-prisma-client/100-queries/037-relation-queries.mdx b/content/200-orm/200-prisma-client/100-queries/037-relation-queries.mdx index 7aaed50598..fc9507e794 100644 --- a/content/200-orm/200-prisma-client/100-queries/037-relation-queries.mdx +++ b/content/200-orm/200-prisma-client/100-queries/037-relation-queries.mdx @@ -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 diff --git a/content/200-orm/500-reference/050-prisma-client-reference.mdx b/content/200-orm/500-reference/050-prisma-client-reference.mdx index abdd6e7f53..5a674bb70e 100644 --- a/content/200-orm/500-reference/050-prisma-client-reference.mdx +++ b/content/200-orm/500-reference/050-prisma-client-reference.mdx @@ -4841,7 +4841,7 @@ const product = await prisma.product.findFirst({ where: { photos: { every: { - height: 100, + height: 200, } } },