Is it possible to perform attribute-based authorization after the .query?
I have a TRPC method,
getStudentGradeById,
that accepts the gradeId
. I want to return the grade only if the student owns it.
the current code is:
I want something like:
I don't want to use the output because it would require me to write the output schema for each method. Additionally, I don't want to include any permission management within the .query. Is it possible to achieve this? Should I attempt to make the necessary changes and submit a pull request?4 Replies
I don't see how it's related with my question...
Why not just return a TRPCError forbidden?
GitHub
feat: middleware after the .query · Issue #5575 · trpc/trpc
Describe the feature you'd like to request let's suppose that I have a TRPC method, getStudentGradeById, that accepts the gradeId. I want to return the grade only if the student owns it. I ...