Skip to content

Instantly share code, notes, and snippets.

@0916dhkim
Created January 18, 2022 04:06
Show Gist options
  • Save 0916dhkim/822e884b5abddf26711c29e90acc8eda to your computer and use it in GitHub Desktop.
Save 0916dhkim/822e884b5abddf26711c29e90acc8eda to your computer and use it in GitHub Desktop.
import {PrismaClient} from '@prisma/client';
const prisma = new PrismaClient();
// 자동으로 `Contact` 타입으로 유추됩니다.
const newContact = await prisma.contact.create({
data: {email: '[email protected]'},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment