skip to Main Content

Mongodb – DeprecationWarning: Mongoose: the `strictQuery` option will be switched back to `false` by default in Mongoose 7

I am just making a database called Fruits from my app.js and connecting the database to MongoDB using Mongoose. const mongoose = require("mongoose"); mongoose.connect("mongodb://localhost:27017/fruitsDB", {useNewUrlParser: true}); mongoose.set('strictQuery', false); const fruitSchema = new mongoose.Schema({ name: String, rating: Number, review: String });…

VIEW QUESTION
Back To Top
Search