(storage?: IStorage)
| 21 | private readonly graphOperations: GraphOperations; |
| 22 | |
| 23 | constructor(storage?: IStorage) { |
| 24 | super(storage); |
| 25 | const {nodeManager, edgeManager, metadataManager} = this.createManagers(); |
| 26 | this.graphOperations = new GraphOperations(nodeManager, edgeManager, metadataManager); |
| 27 | } |
| 28 | |
| 29 | // Node operations |
| 30 | async addNodes(nodes: Node[]): Promise<Node[]> { |
nothing calls this directly
no outgoing calls
no test coverage detected