Mongodb – Can I possible send the all schema in one res status?
So I am trying to experiment if how I will get all items in my 5 schema objects. Here how its look like. const GetAllApple = (req,res) => { const list = [] Ipad.find() .then(data => list.push(data)) .catch(err => console.log(err))…