Are there any examples of someone building a share...
# orm-help
e
Are there any examples of someone building a shared Prisma client. To have a single schema be the source of all truth but be used through multiple repositories. Such as a private package that exports a Prisma client connected to the schema?
r
@Ethan Zoller 👋 I don’t think there’s an example, but you could create the package by adding Prisma as the dependency and
schema.prisma
and on installing that package
prisma generate
would automatically be run and you could reference the types and Prisma’s API in your code.