Gets the Database service for the default
app or a given app.
admin.database() can be called with no arguments to access the default
app's Database service or as
admin.database(app) to access the
Database service associated with a specific
app.
admin.database is also a namespace that can be used to access global
constants and methods associated with the Database service.
example
// Get the Database service for the default appvar defaultDatabase = admin.database();
example
// Get the Database service for a specific appvar otherDatabase = admin.database(app);
Gets the
Databaseservice for the default app or a given app.admin.database()can be called with no arguments to access the default app'sDatabaseservice or asadmin.database(app)to access theDatabaseservice associated with a specific app.admin.databaseis also a namespace that can be used to access global constants and methods associated with theDatabaseservice.// Get the Database service for the default app var defaultDatabase = admin.database();// Get the Database service for a specific app var otherDatabase = admin.database(app);