s
const regions = await univerModel
.find({
regions: /\*/i,
})
.sort("region")
.exec(function (err, univer) {
if (err) throw err;
console.log(univer);
});
Size: a a a
s
const regions = await univerModel
.find({
regions: /\*/i,
})
.sort("region")
.exec(function (err, univer) {
if (err) throw err;
console.log(univer);
});
s
JB
JB
s
s
s
s
s
const sciences = await scienceModel
.find({})
.sort((region: 1));
s
JB
s
const regions = await univerModel
.find({}, { region: 1 })
.sort({ region: 1 })
.exec(function (err, univer) {
if (err) throw err;
console.log(univer);
});
s
JB
s
s
const cities = await univerModel.find().distinct("city");s

JB
JB
JB