router.get("/pop", async function(req, res, next) { const user = await User.findOne({username: "Andrew"}).populate('posts'); res.json(user.posts); });