import { Database } from "https://deno.land/x/mongo@v0.31.1/src/database.ts";
Methods
collection<T = Document>(name: string): Collection<T>
createCollection<T>(name: string, options?: CreateCollectionOptions): Promise<Collection<T>>
createCollection
executes a create command to create a new collection with the specified name and options.
https://www.mongodb.com/docs/manual/reference/command/create/#mongodb-dbcommand-dbcmd.create
createUser()
username: string,
password: string,
options?: CreateUserOptions,
dropDatabase(writeConcern?: WriteConcern)
dropUser(username: string, options?: { writeConcern?: Document; comment?: Document; })
listCollectionNames(options?: { filter?: Document; authorizedCollections?: boolean; comment?: Document; }): Promise<string[]>
listCollections(options?: { filter?: Document; nameOnly?: boolean; authorizedCollections?: boolean; comment?: Document; }): CommandCursor<ListCollectionsResult>