Como acessar uma coleção preexistente com o Mongoose
new Schema({ url: String, text: String, id: Number},
{ collection : 'question' }); // collection name
SAMER SAEID