Вы должны обновить свой код, потому что его запрос на обещание!
const mongoose = require('mongoose');
const ENV = require('dotenv').parse(envStr)
run().catch(error => console.log(error.stack));
async function run() {
await mongoose.connect(ENV.MONGO_URL, { useNewUrlParser: true });
// Clear the database every time. This is for the sake of example only,
// don't do this in prod :)
await mongoose.connection.dropDatabase();
const customerSchema = new mongoose.Schema({ name: String, messages: [Messages], ... });
const User = mongoose.model('User', UserSchema);
//await User.create({ name: 'A', messages: [30, 10] });
//await User.create({ name: 'B', messages: [28, 10] });
// add your data in your Schema
// Find all User
const docs = await User.find();
console.log(docs);
docs.map(license => {
license.sendGreetings()
});
}
для получения дополнительной информации о find()
в mongooes
прочитайте эту ссылку и создайте скрипт