Hi, we are running with microservices and want that every service will hold its own Prisma schema.
Other services will need to combine 2 or more prisma schemas that each one describes a different database.
What is the best way to make it happen?
Should we run
prisma generate
for every relevant schema in a specific micro-service?