Is Prisma ORM still next generation, or has it finally become current generation?
AMA: I work at Prisma, we're moving from Rust to TS
Sequelize vs Prisma
What's the point in using Prisma with my Supabase backend?
Videos
So I wanted to try Prisma for my new project and it seemed really great. The DX seemed to be really nice but right off the bat I needed polymorphism and I assumed that prisma would have support for it. Turns out there is a github issue for it and turns out the team wants/wanted to do it but currently doesn't support it. Alright, might repeat myself a little but I don't need polymorphism THAT much. I can ignore it.
Right after this, I want to exclude fields/columns like "password". Turns out there is a github issue for that too and it is not supported yet. Ok I can do select: {column1: true, column2: true, ...}. Again, repeating myself a bit but it's not too bad.
And right after that (I don't know if this is a prisma related problem though) I get an error related to big int. And there is also a github issue for the error and the suggested solution is expanding the JSON.stringify prototype which just seems too much.
So now I'm wondering that if I'm just terribly unlucky to encounter these issues all at once or is prisma just really problematic. I remember typeorm didn't have most of these issues but I haven't worked with it so much. And if prisma is problematic, do you have any suggestions? Thanks
» npm install prisma
I always find it funny that tools describe them as 'next-gen' either stay in the 'upcoming' or 'next-gen' status, or die out before they become current lol. Did they finally fix their SQL joins?