2. /v1/getProduct?locale="de_DE" (value of locale can be anything [de_DE, en_US]) (GET) mongoose code example
Example 1: schema mongoose
const fruitSchema = new mongoose.Schema ({
name: {
type: String
},
rating: {
type: Number,
min: 1,
max: 10
},
review: String
});
Example 2: mongoose
mongoose initial setup