How to get all documents in Mongoose

In this article, You will learn how to get all documents in Mongoose. Let assume, you have a mongoose model User that has all your…

The post How to get all documents in Mongoose appeared first on CodeSource.io.


This content originally appeared on CodeSource.io and was authored by Deven

In this article, You will learn how to get all documents in Mongoose.

Let assume, you have a mongoose model User that has all your app’s users information. Now, to get all users list from the mongoose collection you have to call User.find() with an empty object as the first parameter.

const User = mongoose.model('User', Schema({
  name: String,
  email: String,
        password : String
}));

const filter = {};
const all = await User.find(filter);

It will search for all the documents that match with the filter Object. But when you pass an empty filter, it will match with all the documents and will return all documents.

Similarly, if you call User.find() and pass no arguments you will get the same result. In that case, you have to use await before User.find()

await User.find()

This is how you can get all documents in Mongoose by using the mongoose find() function.

The post How to get all documents in Mongoose appeared first on CodeSource.io.


This content originally appeared on CodeSource.io and was authored by Deven


Print Share Comment Cite Upload Translate Updates
APA

Deven | Sciencx (2021-10-15T06:39:33+00:00) How to get all documents in Mongoose. Retrieved from https://www.scien.cx/2021/10/15/how-to-get-all-documents-in-mongoose/

MLA
" » How to get all documents in Mongoose." Deven | Sciencx - Friday October 15, 2021, https://www.scien.cx/2021/10/15/how-to-get-all-documents-in-mongoose/
HARVARD
Deven | Sciencx Friday October 15, 2021 » How to get all documents in Mongoose., viewed ,<https://www.scien.cx/2021/10/15/how-to-get-all-documents-in-mongoose/>
VANCOUVER
Deven | Sciencx - » How to get all documents in Mongoose. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/10/15/how-to-get-all-documents-in-mongoose/
CHICAGO
" » How to get all documents in Mongoose." Deven | Sciencx - Accessed . https://www.scien.cx/2021/10/15/how-to-get-all-documents-in-mongoose/
IEEE
" » How to get all documents in Mongoose." Deven | Sciencx [Online]. Available: https://www.scien.cx/2021/10/15/how-to-get-all-documents-in-mongoose/. [Accessed: ]
rf:citation
» How to get all documents in Mongoose | Deven | Sciencx | https://www.scien.cx/2021/10/15/how-to-get-all-documents-in-mongoose/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.