From bdb94a231403424f8a2bfaf71958e52a2f369ed4 Mon Sep 17 00:00:00 2001 From: Matthias Oertel Date: Wed, 24 Mar 2021 18:13:51 +0100 Subject: [PATCH] Update 037-relation-queries.mdx typos --- .../100-components/02-prisma-client/037-relation-queries.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/200-concepts/100-components/02-prisma-client/037-relation-queries.mdx b/content/200-concepts/100-components/02-prisma-client/037-relation-queries.mdx index 500c348716..314393eaee 100644 --- a/content/200-concepts/100-components/02-prisma-client/037-relation-queries.mdx +++ b/content/200-concepts/100-components/02-prisma-client/037-relation-queries.mdx @@ -295,7 +295,7 @@ Note that you **cannot** use `select` and `include` _on the same level_. This me ```ts -// The follwing query returns an exception +// The following query returns an exception const getUser = await prisma.user.findUnique({ where: { id: 19, @@ -347,7 +347,7 @@ Please either use `include` or `select`, but not both at the same time. Instead, use nested `select` options: ```ts -// The follwing query returns an exception +// The following query returns an exception const getUser = await prisma.user.findUnique({ where: { id: 19,