I have the following code:
Post.create(req.body) .then(post => res.status(201).json(post)) .catch(err => res.status(500).json(err))
It