import { mongo } from "https://deno.land/x/hex@0.5.15/src/data/deps.ts";
const { Database } = mongo;
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
dropDatabase(writeConcern?: WriteConcern)
listCollectionNames(options?: { filter?: Document; authorizedCollections?: boolean; comment?: Document; }): Promise<string[]>
listCollections(options?: { filter?: Document; nameOnly?: boolean; authorizedCollections?: boolean; comment?: Document; }): CommandCursor<ListCollectionsResult>