Mongoose и Express Get запросы

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