Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 399 Bytes

crud.md

File metadata and controls

18 lines (14 loc) · 399 Bytes

CRUD (create, read, update, delete)

How can we create?

  1. insertOne(data, options)
  2. insertMany(data, options)

How can we read?

  1. find(filter, options)
  2. findOne(filter, options)

How to update?

  1. updateOne(filter, data, options)
  2. updateMany(filter, data, options)
  3. replaceOne(filtr, data, options)

how to delete?

  1. deleteOne(filter, options)
  2. deleteMany(filter, options)