Mongodb – MongooseError [MissingSchemaError]: Schema hasn't been registered for model
I need a little help, I've a category schema, which looks like below, let mongoose = require("mongoose"); let schema = mongoose.Schema; const _ = require("lodash"); let category = new schema( { // Primary Fields categoryName: { type: String, unique: true…