We started to scale our architecture and now need ...
# orm-help
r
We started to scale our architecture and now need your advice, how to use the same Prisma instance by multiple services. Current solution: - service1 owns Prisma datamodels (800+ entities), generates Prisma client for internal purpose - service2 relies on the same data, so it contains the same Prisma datamodels and requires to generate type defs for own Prisma client This approach looks quite painful and not scalable, e.g. to keep Prisma clients in sync, or once we introduce one more service.