According to docs you can sort in this way
yourModel.find({}).sort('yourSort').then(result => {console.log(result)})
You can use multiple ways. As explained into docs, for example sort({ field: 'asc', test: -1 })
is the same as sort('field -test')
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…