Hi, iI have a question RE: implementing Prisma int...
# orm-help
i
Hi, iI have a question RE: implementing Prisma into an event driven design. Say I have an API thats hooked onto a schema thats in Repo A , which generates the prisma client for that API. I would like to have multiple consumers that will congest events from the queue, then write to the same DB, preferably through a mutation thats in Repo A. Would that mean that I would have to generate a new prisma client for each consumer and somehow maintain all consumers to hace the same schema as repo A? Or would it be better to have the consumers talk to the API and have auth to hit those mutations?