I have a mongo object and wish to access it via mongoose for my web app. The schema I\'ve defined has an Object storing user ids and a
mongo
mongoose
Object
You'll be better off if you avoid dynamic keys in your schema and go with your second idea of:
user_info: [{sessionid: String, value: String}]
You can use the $ positional operator to update individual user_info array elements by sessionid.
user_info
sessionid