From 3f61385d9fad7d58b8c5ce58bcdd65809a6e92fc Mon Sep 17 00:00:00 2001 From: Nikolas Date: Thu, 2 Mar 2023 13:46:06 +0100 Subject: [PATCH] Update index.mdx --- .../02-prisma-client/052-advanced-type-safety/index.mdx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/content/200-concepts/100-components/02-prisma-client/052-advanced-type-safety/index.mdx b/content/200-concepts/100-components/02-prisma-client/052-advanced-type-safety/index.mdx index 3e433cf696..b6063e83e0 100644 --- a/content/200-concepts/100-components/02-prisma-client/052-advanced-type-safety/index.mdx +++ b/content/200-concepts/100-components/02-prisma-client/052-advanced-type-safety/index.mdx @@ -11,6 +11,9 @@ The generated code for Prisma Client contains several helpful types and utilitie + +> **Note**: If you're interested in advanced type safety topics with Prisma, be sure to check out this [blog post](https://www.prisma.io/blog/satisfies-operator-ur8ys8ccq7zb) about improving your Prisma workflows with the new TypeScript `satisfies` keyword. + ## Importing generated types You can import the `Prisma` namespace and use dot notation to access types and utilities. The following example shows how to import the `Prisma` namespace and use it to access and use the `Prisma.UserSelect` [generated type](#what-are-generated-types):