Skip to content

Instantly share code, notes, and snippets.

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