Picking up an old project that uses Prisma and its...
# orm-help
e
Picking up an old project that uses Prisma and its a bit confusing. Im using the latest version of Prisma 1 and using the Mongo connector. Should I wait to try and switch over to Prisma v2 when there is a clearer migration? I’ve also been thinking about ditching graphql-yoga and using Apollo Server instead?
d
The switch to apollo-server is pretty easy to make and I'd recommend it because yoga isn't actively being developed. Also, I am not a mongo person so not sure, but don't think it's supported on v2 yet
🙌 1
r
Hey @ezeikel 👋 Yes currently Prisma 2 doesn't support MongoDB and there's an open feature request here. Also currently GraphQL Yoga isn't actively being developed, but you can check out the new Nexus framework that is under active development. If you're currently using MongoDB, it would be best to stick to Prisma 1 and use Apollo Server.
👍 1
e
Perfect. Thank you both!