From 72fed61f45cfc97df768d374f5ac78ec6fd4e647 Mon Sep 17 00:00:00 2001 From: "Joseph R. Quinn" <423821+quinnjr@users.noreply.github.com> Date: Thu, 16 Apr 2026 14:56:42 -0400 Subject: [PATCH] docs(generators): add community generators from Lexmata and PegasusHeavy The community generators list was missing several actively maintained generators that target non-JavaScript ecosystems and NestJS GraphQL: - @lexmata/prisma-ent-generator: produces Go Ent schema files - @lexmata/prisma-python-generator: produces Python Pydantic models - @pegasusheavy/nestjs-prisma-graphql: generates NestJS GraphQL types with ESM-first support targeting Prisma 7+ --- .../content/docs/orm/prisma-schema/overview/generators.mdx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/docs/content/docs/orm/prisma-schema/overview/generators.mdx b/apps/docs/content/docs/orm/prisma-schema/overview/generators.mdx index 405b53dc04..f29d5a1515 100644 --- a/apps/docs/content/docs/orm/prisma-schema/overview/generators.mdx +++ b/apps/docs/content/docs/orm/prisma-schema/overview/generators.mdx @@ -396,3 +396,6 @@ The following is a list of community created generators. - [`prismabox`](https://github.com/m1212e/prismabox): Generates versatile [typebox](https://github.com/sinclairzx81/typebox) schema from your Prisma models. - [`prisma-generator-typescript-interfaces`](https://github.com/mogzol/prisma-generator-typescript-interfaces): Generates zero-dependency TypeScript interfaces from your Prisma schema. - [`prisma-openapi`](https://github.com/nitzano/prisma-openapi): Generates OpenAPI schema from Prisma models. +- [`@lexmata/prisma-ent-generator`](https://github.com/Lexmata/prisma-ent-generator): Generates Go [Ent](https://entgo.io/) schema files from your Prisma schema. +- [`@lexmata/prisma-python-generator`](https://github.com/Lexmata/prisma-python-generator): Generates Python [Pydantic](https://docs.pydantic.dev/) model classes from your Prisma schema. +- [`@pegasusheavy/nestjs-prisma-graphql`](https://github.com/pegasusheavy/nestjs-prisma-graphql): Generates NestJS GraphQL types from your Prisma schema. ESM-first with support for Prisma 7+.