here, i have access to userId and i want to get result without document of that perticular user. So, how can i do this in mongoose?
async peopleyoumayknow(req, res){
const {id} = req.params
const response = await userModel.find({}).sort({creation_date:-1}).limit(12)
return res.send(response)
}