Hi, we are running with microservices and want tha...
# orm-help
b
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?
r
@Benny ๐Ÿ‘‹ Yes thatโ€™s the way to go.
generate
for each schema in the microservice.
b
๐Ÿ™๐Ÿ™