morpheus4j
Version:
Morpheus is a migration tool for Neo4j. It aims to be a simple and intuitive way to migrate your database.
13 lines (12 loc) • 479 B
TypeScript
import { MigrationOptions } from '../types';
import { FileService } from './file.service';
import { Repository } from './neo4j.repository';
export declare class DeleteService {
private readonly repository;
private readonly fileService;
constructor(repository: Repository, fileService: FileService);
delete(identifier: string, options?: MigrationOptions): Promise<void>;
private findTargetMigration;
private performDeletion;
private previewDeletion;
}