I’m migrating from Prisma 1.34 to Prisma 3.2.0 and...
# prisma-migrate
j
I’m migrating from Prisma 1.34 to Prisma 3.2.0 and in my current setup I have several types like “XxxWhereInput” for my Xxx types… When I generate types with nexus-prisma I get the type Xxx from my prisma model, but not associated WhereInput etc. Should I add these to my Prisma model to have them generated for nexus? Or should I declare them myself in nexus schema directly? Or can I have them generated in some other way?
Aha, it seems they exist in prisma client
👍 1