Skip to content

Instantly share code, notes, and snippets.

@0916dhkim
Created December 29, 2021 02:45
Show Gist options
  • Save 0916dhkim/55f815b28b3ece839e90a6e10886a0db to your computer and use it in GitHub Desktop.
Save 0916dhkim/55f815b28b3ece839e90a6e10886a0db to your computer and use it in GitHub Desktop.
router.post(
'/',
handleErrors(async (req, res) => {
const post = await prisma.post.create({
data: {
title: req.body.title,
content: req.body.content,
},
});
res.send({post});
})
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment