mirror of
https://github.com/ArthurDanjou/trpc-nuxt.git
synced 2026-01-14 20:19:33 +01:00
24 lines
540 B
Markdown
24 lines
540 B
Markdown
## Validation
|
|
|
|
tRPC works out-of-the-box with yup/superstruct/zod/myzod/custom validators. Learn more about input validation [here](https://trpc.io/docs/router#input-validation).
|
|
|
|
```ts
|
|
// ~/server/trpc/index.ts
|
|
import { z } from 'zod'
|
|
|
|
export const router = trpc
|
|
.router()
|
|
.mutation('createUser', {
|
|
// validate input with Zod
|
|
input: z.object({
|
|
name: z.string().min(5)
|
|
}),
|
|
async resolve(req) {
|
|
// use your ORM of choice
|
|
return await UserModel.create({
|
|
data: req.input,
|
|
})
|
|
},
|
|
})
|
|
```
|