Skip to content

Instantly share code, notes, and snippets.

@nmchenry01
Last active August 13, 2020 22:48
Show Gist options
  • Save nmchenry01/735ccf7c7d22aaa7b8b690c4318f52f1 to your computer and use it in GitHub Desktop.
Save nmchenry01/735ccf7c7d22aaa7b8b690c4318f52f1 to your computer and use it in GitHub Desktop.
The first Prisma create example for "Prisma vs. TypeORM"
const createCompany = async (prisma: PrismaClient) => {
await prisma.company.create({
data: {
name: 'Acme',
},
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment