UNPKG

@prisma-extensions/find-or-create

Version:

Simplify your development experience by finding or creating records with a function.

15 lines (14 loc) 373 B
import { Prisma } from '@prisma/client'; export const extension = Prisma.defineExtension({ name: '@prisma-extensions/find-or-create', model: { $allModels: { async findOrCreate(args) { return await this.upsert({ ...args, update: {}, }); }, }, }, });