in app/src/app/pages/document/document.component.ts [68:78]
remove() {
this.mongodb.remove(this.server, this.database, this.collection, this.document)
.subscribe((res: any) => {
this.item = null;
this.router.navigate([
"servers", this.server,
"databases", this.database,
"collections", this.collection,
])
});
}