app.get('/api/all', (req,res) =>{ Model.find({}) .then(model=> { res.json(model) }).catch(error=>{ res.json(error) } }) })