Is there a way to use the type used in prisma CURD...
# orm-help
y
Is there a way to use the type used in prisma CURD in code ? I want to import UserCreateInput from resolver and use it.
r
It’s under
Prisma
.
Copy code
import { Prisma } from '@prisma/client'

Prisma.UserCreateInput
👍 1
y
ohhhh !! thank you !
👍 1