jlmurphy
Results
1
issues of
jlmurphy
I have a model which has the following structure: ``` submodel = new mongoose.Schema({ value : {type: String, require: true} }); model = new mongoose.Schema({ values : {type: [submodel], require:...