Typed sql only certain parts of query
Hi there, just wondering if there is an issue in place already for a feature to allow escape hatching only certain parts of a query? In my case I would like to escape the
orderBy
part of the query and keep Prisma ORM everywhere else. Thanks1 Reply
Hi @Ben Liger
There is an existing issue to allow escape hatches for specific parts of a query, particularly for the orderBy clause.
GitHub
Raw
orderBy
statement · Issue #5848 · prisma/prismaProblem Whilst Prisma's current setup allows for very nice orderBy usage for the majority of cases, it does not support more complex cases; for example, when wanting to order results by their d...