How can I add an image to my mongodb when using the mongoose.schema in JS?
const chequeSchema = new schema({
chequeImageUri: {
type: Image,
required: true
}
}
Image as a type doesn't work. Also, im testing by using postman so how do i upload the image there?