Creates a new Db instance
The MongoClient for the database.
The name of the database this instance represents.
Optional
options: DbOptionsOptional settings for Db construction
Optional
Static
SYSTEM_Static
SYSTEM_Static
SYSTEM_Static
SYSTEM_Static
SYSTEM_Static
SYSTEM_The current readPreference of the Db. If not explicitly defined for this Db, will be inherited from the parent MongoClient
Check if a secondary can be used (because the read preference is not set to primary)
Add a user to the database
The username for the new user
Optional
passwordOrOptions: string | AddUserOptionsAn optional password for the new user, or the options for the command
Optional
Optional
options: AddUserOptionsOptional settings for the command
Optional
Use the createUser command in db.command()
instead.
https://www.mongodb.com/docs/manual/reference/command/createUser/
Execute an aggregation framework pipeline against the database, needs MongoDB >= 3.6
Returns a reference to a MongoDB Collection. If it does not exist it will be created implicitly.
the collection name we wish to access.
Optional
options: CollectionOptionsOptional
return the new Collection instance
Fetch all collections for the current db.
Optional
options: ListCollectionsOptionsOptional settings for the command
Optional
Execute a command
The command to run
Optional
options: RunCommandOptionsOptional settings for the command
Optional
This command does not inherit options from the MongoClient.
The driver will ensure the following fields are attached to the command sent to the server:
lsid
- sourced from an implicit session or options.session$readPreference
- defaults to primary or can be configured by options.readPreference$db
- sourced from the name of this databaseIf the client has a serverApi setting:
apiVersion
apiStrict
apiDeprecationErrors
When in a transaction:
readConcern
- sourced from readConcern set on the TransactionOptionswriteConcern
- sourced from writeConcern set on the TransactionOptionsAttaching any of the above fields to the command will have no effect as the driver will overwrite the value.
Create a new collection on a server with the specified options. Use this to create capped collections. More information about command options available at https://www.mongodb.com/docs/manual/reference/command/create/
The name of the collection to create
Optional
options: CreateCollectionOptionsOptional settings for the command
Optional
Creates an index on the db and collection.
Name of the collection to create the index on.
Specify the field to index, or an index specification
Optional
options: CreateIndexesOptionsOptional settings for the command
Optional
Drop a collection from the database, removing it permanently. New accesses will create a new collection.
Name of collection to drop
Optional
options: DropCollectionOptionsOptional settings for the command
Optional
Drop a database, removing it permanently from the server.
Optional
options: CommandOperationOptionsOptional settings for the command
Optional
List all collections of this database with optional filter
Query to filter collections by
Optional settings for the command
Optional
filter: mongoose.mongo.BSON.DocumentOptional
Optional
options: ListCollectionsOptionsOptional
Retrieve the current profiling Level for MongoDB
Optional
options: CommandOperationOptionsOptional settings for the command
Optional
Remove a user from a database
The username to remove
Optional
options: CommandOperationOptionsOptional settings for the command
Optional
Rename a collection.
Name of current collection to rename
New name of of the collection
Optional
options: RenameOptionsOptional settings for the command
Optional
This operation does not inherit options from the MongoClient.
A low level cursor API providing basic driver functionality:
The command that will start a cursor on the server.
Optional
options: RunCursorCommandOptionsConfigurations for running the command, bson options will apply to getMores
Optional
Set the current profiling level of MongoDB
The new profiling level (off, slow_only, all).
Optional
options: CommandOperationOptionsOptional settings for the command
Optional
Create a new Change Stream, watching for new changes (insertions, updates, replacements, deletions, and invalidations) in this database. Will ignore all changes to system collections.
Optional
pipeline: mongoose.mongo.BSON.Document[]An array of pipeline stages through which to pass change stream documents. This allows for filtering (using $match) and manipulating the change stream documents.
Optional
Optional
options: ChangeStreamOptionsOptional settings for the command
Optional
watch() accepts two generic arguments for distinct use cases:
Generated using TypeDoc
The Db class is a class that represents a MongoDB Database.
Example