How can I access the trpc context in zod's refine function?
To do something like
Edit:
It would allow for easier UX because I can use the existing validation code in the frontend to show the user the errors at the correct field.
2 Replies
You can’t, validators validate data in place and are generally 3rd party libs. You probably want a middleware after the input to then take the ID and check it exists
Okay, thank you. I guess I'll do it on field change in the frontend then. I think that's better for UX anyway.