Skip to content

Commit a0476bf

Browse files
committed
reformat
1 parent 88b5ce9 commit a0476bf

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)