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
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
options: AddUserOptionsOptional settings for the command
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
An array of aggregation stages to be executed
Optional
options: AggregateOptionsOptional settings for the command
Returns a reference to a MongoDB Collection. If it does not exist it will be created implicitly.
the collection name we wish to access.
return the new Collection instance
Fetch all collections for the current db.
Optional
options: ListCollectionsOptionsOptional settings for the command
Execute a command
The command to run
Optional
options: RunCommandOptionsOptional settings for the command
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
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
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
Drop a database, removing it permanently from the server.
Optional
options: CommandOperationOptionsOptional settings for the command
Retrieves this collections index info.
The name of the collection.
Optional
options: IndexInformationOptionsOptional settings for the command
List all collections of this database with optional filter
Query to filter collections by
Optional settings for the command
Optional
filter: DocumentOptional
options: ListCollectionsOptionsRetrieve the current profiling Level for MongoDB
Optional
options: CommandOperationOptionsOptional settings for the command
Remove a user from a database
The username to remove
Optional
options: CommandOperationOptionsOptional settings for the command
Rename a collection.
Name of current collection to rename
New name of of the collection
Optional
options: RenameOptionsOptional settings for the command
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
Set the current profiling level of MongoDB
The new profiling level (off, slow_only, all).
Optional
options: CommandOperationOptionsOptional settings for the command
Get all the db statistics.
Optional
options: DbStatsOptionsOptional settings for the command
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.
Type of the data being detected by the change stream
Type of the whole change stream document emitted
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 settings for the command
watch() accepts two generic arguments for distinct use cases:
Generated using TypeDoc
The Db class is a class that represents a MongoDB Database.
Example