4 upvotes·128.8K views
Replies (1)
The key things to know about Prisma is that it is Typescript native, and that it (intentionally) does not support downward migrations.
Prisma does not natively support the Getter/Setter pattern, but you can choose to implement middlewares to accomplish the same outcome. You may also want to consider custom client queries
Prisma does not currently do hooks in the same sense as sequelize does hooks. Middleware would however enable you to create a similar construct. Please refer to this thread to see the discussion.
4 upvotes·128 views