I have create one schema to store questions and answers :
var questionSchema = mongoose.Schema({
questions : {type: String},
details : {type: String},
tags : {type: String},
answer : [{String}],
});
In this i want to store multiple answers for one question but i have one question page and different page for answer my requirement is to store multiple answers in one question any suggestions.
Thanks,
Deepak