-
Notifications
You must be signed in to change notification settings - Fork 1
MongoDB and Mongoose #31
Copy link
Copy link
Open
Description
rafaelgeronimo
opened on Aug 30, 2018
Issue body actions
- Install and Set Up Mongoose
- Create a Model
- Create and Save a Record of a Model
- Create Many Records with model.create()
- Use model.find() to Search Your Database
- Use model.findOne() to Return a Single Matching Document from Your Database
- Use model.findById() to Search Your Database By _id
- Perform Classic Updates by Running Find, Edit, then Save
- Perform New Updates on a Document Using model.findOneAndUpdate()
- Delete One Document Using model.findByIdAndRemove
- Delete Many Documents with model.remove()
- Chain Search Query Helpers to Narrow Search Results
Reactions are currently unavailable