Skip to content

Instantly share code, notes, and snippets.

@nmchenry01
Created August 13, 2020 23:35
Show Gist options
  • Select an option

  • Save nmchenry01/087968b10a64ff47e65a63216ff85ae3 to your computer and use it in GitHub Desktop.

Select an option

Save nmchenry01/087968b10a64ff47e65a63216ff85ae3 to your computer and use it in GitHub Desktop.
Delete customer example for "Prisma vs. TypeORM"
const deleteCustomer = async (prisma: PrismaClient) => {
return prisma.customer.delete({
where: {
username: 'Customer4',
},
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment