Atualização de Mongoose e retorno novo
const query = {} //your query here
const update = {} //your update in json here
const option = {new: true} //will return updated document
const user = await User.findOneAndUpdate(query , update, option)
Graceful Gerenuk