MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Come ottenere i dati dal database MongoDB esistente?

Se desideri recuperare un articolo esistente collezione:

var articleSchema = new mongoose.Schema({
  title: { type: String, required: true },
  body: { type: String }
}, { collection : 'Article' });