ยฉ 2026 Hedgehog Software, LLC
`Property 'Skip' does not exist on type 'typeof import("some_project/src/generated/prisma/internal/prismaNamespace")'.
import { PrismaClient, Prisma } from '@/generated/prisma/client'
product.brand
prisma.product.create({data: { ... // some other fields brand: product.brand ? { connectOrCreate: { create: { name: product.brand, }, where: { name: product.brand, }, }, } : Prisma.Skip,