Created
January 18, 2022 04:06
-
-
Save 0916dhkim/822e884b5abddf26711c29e90acc8eda to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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