File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -56,30 +56,36 @@ npm run build
5656#### MongoDB Database Tools
5757
5858##### Connection
59+
5960- ` connect ` - Connect to a MongoDB instance
6061
6162##### Read Operations
63+
6264- ` find ` - Run a find query against a MongoDB collection
6365- ` aggregate ` - Run an aggregation against a MongoDB collection
6466- ` count ` - Get the number of documents in a MongoDB collection
6567
6668##### Create Operations
69+
6770- ` insert-one ` - Insert a single document into a MongoDB collection
6871- ` insert-many ` - Insert multiple documents into a MongoDB collection
6972- ` create-index ` - Create an index for a MongoDB collection
7073
7174##### Update Operations
75+
7276- ` update-one ` - Update a single document in a MongoDB collection
7377- ` update-many ` - Update multiple documents in a MongoDB collection
7478- ` rename-collection ` - Rename a MongoDB collection
7579
7680##### Delete Operations
81+
7782- ` delete-one ` - Delete a single document from a MongoDB collection
7883- ` delete-many ` - Delete multiple documents from a MongoDB collection
7984- ` drop-collection ` - Remove a collection from a MongoDB database
8085- ` drop-database ` - Remove a MongoDB database
8186
8287##### Metadata Operations
88+
8389- ` list-databases ` - List all databases for a MongoDB connection
8490- ` list-collections ` - List all collections for a given database
8591- ` collection-indexes ` - Describe the indexes for a collection
You can’t perform that action at this time.
0 commit comments