From eeb6cecae156c60207994eaff8e361568f41b93c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Malte=20Kie=C3=9Fling?= <30420110+maltekiessling@users.noreply.github.com> Date: Tue, 28 Feb 2023 13:09:00 +0100 Subject: [PATCH] Fix typo in Prisma plugin docs --- website/pages/docs/plugins/prisma.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/pages/docs/plugins/prisma.mdx b/website/pages/docs/plugins/prisma.mdx index 8bedea230..905c12bbe 100644 --- a/website/pages/docs/plugins/prisma.mdx +++ b/website/pages/docs/plugins/prisma.mdx @@ -455,7 +455,7 @@ builder.prismaObject('User', { The returned query object will be added to the include section of the `query` argument that gets passed into the first argument of the parent `t.prismaField`, and can include things like `where`, -`skip`, `take`, abd `orderBy`. The `query` function will be passed the arguments for the field, and +`skip`, `take`, and `orderBy`. The `query` function will be passed the arguments for the field, and the context for the current request. Because it is used for pre-loading data, and solving n+1 issues, it can not be passed the `parent` object because it may not be loaded yet.