Skip to content

CRUD Operations

# Creates collection myCollection and inserts data
> db.myCollection.insertOne( { x: 1 } );

# List data from collection
> db.getCollection("myCollection")

# same as db.myCollection.find()
> db.getCollection("myCollection").find()

References


Last update: May 5, 2023