interface ConnectionNode {
    config: MongodbConnectionConfig;
    connection: ConnectionContract;
    name: string;
    state: "registered" | "open" | "closing" | "closed";
}

Properties

connection: ConnectionContract
name: string
state: "registered" | "open" | "closing" | "closed"