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