Mongoose dan Express Dapatkan permintaan

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