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
56
56
#### MongoDB Database Tools
57
57
58
58
##### Connection
59
+
59
60
- ` connect ` - Connect to a MongoDB instance
60
61
61
62
##### Read Operations
63
+
62
64
- ` find ` - Run a find query against a MongoDB collection
63
65
- ` aggregate ` - Run an aggregation against a MongoDB collection
64
66
- ` count ` - Get the number of documents in a MongoDB collection
65
67
66
68
##### Create Operations
69
+
67
70
- ` insert-one ` - Insert a single document into a MongoDB collection
68
71
- ` insert-many ` - Insert multiple documents into a MongoDB collection
69
72
- ` create-index ` - Create an index for a MongoDB collection
70
73
71
74
##### Update Operations
75
+
72
76
- ` update-one ` - Update a single document in a MongoDB collection
73
77
- ` update-many ` - Update multiple documents in a MongoDB collection
74
78
- ` rename-collection ` - Rename a MongoDB collection
75
79
76
80
##### Delete Operations
81
+
77
82
- ` delete-one ` - Delete a single document from a MongoDB collection
78
83
- ` delete-many ` - Delete multiple documents from a MongoDB collection
79
84
- ` drop-collection ` - Remove a collection from a MongoDB database
80
85
- ` drop-database ` - Remove a MongoDB database
81
86
82
87
##### Metadata Operations
88
+
83
89
- ` list-databases ` - List all databases for a MongoDB connection
84
90
- ` list-collections ` - List all collections for a given database
85
91
- ` collection-indexes ` - Describe the indexes for a collection
You can’t perform that action at this time.
0 commit comments