.find()
Parameter
Description
Returns
Description
Object
The data object that was sought
Array
Returns the entire database if an id is not passed in find
find(<Query>)
// All below works
User.find((obj) => obj._id === 1)
User.find({ _id: 1 })
User.find({ username: "lennart" })
User.find(1)
// {
// _id: 1,
// username: "lennart"
// }
If the id is not passed:
User.find() // [{ _id: 1, username: "lennart" }]
Last updated
Was this helpful?