@Dale Watson 👋
Prisma provides an API where you can easily fetch data and ensures type-safety that you won’t get with raw queries. You can fetch relations, aggregations etc. perform all CRUD operations where a raw query would be much work. An ORM simply generates the query for you so you don’t have to write it yourself. Also Prisma supports
raw queries if you need to query for something not supported by Prisma.
I would suggest going through the
docs and reading
this to get a better understanding of how it works 🙂