skip to Main Content

why is mongoose not finding my data in mongodb

I have the following schema: const mongoose = require("mongoose"); const { ObjectId, Number } = mongoose.Schema.Types; const CategoriesSchema = new mongoose.Schema( { name: { type: String, required: true, }, img: { type: String, required: true, } } ); mongoose.model("Categories", CategoriesSchema,…

VIEW QUESTION
Back To Top
Search