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 1fa6eb366f..5d62ff72c0 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 @@ -241,9 +241,7 @@ const user = await prisma.user.findFirst({ -Here's a visual representation of how a nested create operation can write to several tables in the database as once: -![](/img/orm/nested-create.png) ### Select specific fields of included relations @@ -640,6 +638,10 @@ const result = await prisma.user.create({ +Here's a visual representation of how a nested create operation can write to several tables in the database as once: + +![](/img/orm/nested-create.png) + #### Using nested `createMany` The following query uses a nested [`createMany`](/orm/reference/prisma-client-reference#create-1) to create: