Answers for "how to remove the id in mongoose schema"

-1

how to remove the id in mongoose schema

var mongoose = require("mongoose");

var subSchema = mongoose.Schema({
    //your subschema content
},{ _id : false });

var schema = mongoose.Schema({
    // schema content
    subSchemaCollection : [subSchema]
});

var model = mongoose.model('tablename', schema);
Posted by: Guest on April-30-2020

Code answers related to "how to remove the id in mongoose schema"

Code answers related to "Javascript"

Browse Popular Code Answers by Language