Mongodb – How to save object to a mongoose document
I am using mongodb and I am having challenges saving. My Schema is const transaction = new Schema({ sender: { type: ObjectId, default: null, transaction_type: { type: String, enum: transaction_types, default: null } }, recipient: { type: ObjectId, default: null,…