const { Model } = require("mongoose"); code example
Example 1: schema mongoose
const fruitSchema = new mongoose.Schema ({
name: {
type: String
},
rating: {
type: Number,
min: 1,
max: 10
},
review: String
});
Example 2: mongoose
mongoose initial setup