DEV Community

Discussion on: Building a Prisma Schema

Collapse
 
sabinthedev profile image
Sabin Adams

For sure. Like any ORM, there are definitely some querying limitations on what you can do with Prisma’s client. Using an ORM you trade off some flexibility and power for ease of use and standardization.

It isn’t really a fit for every query. I’ve tended to use the rawQuery function when having to run something an ORM isn’t meant to handle.