Mongoose Max Record

const maxQuery = Goods.find({}).sort({ price: -1 }).limit(1).then(goods => goods[0].price);
Blushing Bat