How to get enums in prisma client?
You can access the user_type enum in your application code like this: import {user_type } from “@prisma/client”; let foo: user_type = “superadmin”; // use like any other type/enum How you plan to connect this to the client-side or send it there is up to you. Typically Prisma types reside in the server-side of your code, … Read more