Hello,
I want to map parent child relationship here. I have already added a property "parent" on all child nodes indicating what code has the parent. I'm not sure how to best use that information.
TRACEPARTS:TP01 (Level2CatalogPathID) is parent to TRACEPARTS:TP01002 (Level3CatalogPathID). When I run the below code I create a relationship called parent, but when I check in the database I see parent is two ways. I want to specify parent node <-- child node relation ship in one way.
What I'm I doing wrong here?
//Connect Traceparts Child nodes with Parents Level3
:auto LOAD CSV WITH HEADERS from 'file:///TraceParts-Folder-Structure-Level3.csv' AS row
CALL {
WITH row
CALL apoc.do.when(row.Level2CatalogPathID IS NOT NULL,
'MATCH (c:Traceparts {catalogPathID: row.Level3CatalogPathID})
MATCH (p:Traceparts {catalogPathID: row.Level2CatalogPathID})
MERGE (p)<-[r:parent]-(c)',
'',
{row:row}
)
YIELD value
}
IN TRANSACTIONS OF 1000 ROWS;
I
Level2CatalogPathName
Level2CatalogPathID
Level3CatalogPathName
Level3CatalogPathID
Mechanical components
TRACEPARTS:TP01
Bearings
TRACEPARTS:TP01002
Mechanical components
TRACEPARTS:TP01
Bearings
TRACEPARTS:TP01002
Mechanical components
TRACEPARTS:TP01
Brakes, clutches and couplings
TRACEPARTS:TP01003
Mechanical components
TRACEPARTS:TP01
Brakes, clutches and couplings
TRACEPARTS:TP01003
Mechanical components
TRACEPARTS:TP01
Brakes, clutches and couplings
TRACEPARTS:TP01003
Mechanical components
TRACEPARTS:TP01
Brakes, clutches and couplings
TRACEPARTS:TP01003
Mechanical components
TRACEPARTS:TP01
Brakes, clutches and couplings
TRACEPARTS:TP01003
Mechanical components
TRACEPARTS:TP01
Brakes, clutches and couplings
TRACEPARTS:TP01003
Mechanical components
TRACEPARTS:TP01
Brakes, clutches and couplings
TRACEPARTS:TP01003
Mechanical components
TRACEPARTS:TP01
Brakes, clutches and couplings
TRACEPARTS:TP01003
Mechanical components
TRACEPARTS:TP01
Brakes, clutches and couplings
TRACEPARTS:TP01003
Mechanical components
TRACEPARTS:TP01
Brakes, clutches and couplings
TRACEPARTS:TP01003
Mechanical components
TRACEPARTS:TP01
Brakes, clutches and couplings
TRACEPARTS:TP01003
Mechanical components
TRACEPARTS:TP01
Brakes, clutches and couplings
TRACEPARTS:TP01003
Mechanical components
TRACEPARTS:TP01
Brakes, clutches and couplings
TRACEPARTS:TP01003
Mechanical components
TRACEPARTS:TP01
Brakes, clutches and couplings
TRACEPARTS:TP01003
Mechanical components
TRACEPARTS:TP01
Brakes, clutches and couplings
TRACEPARTS:TP01003
Mechanical components
TRACEPARTS:TP01
Brakes, clutches and couplings
TRACEPARTS:TP01003
Mechanical components
TRACEPARTS:TP01
Brakes, clutches and couplings
TRACEPARTS:TP01003
Mechanical components
TRACEPARTS:TP01
Brakes, clutches and couplings
TRACEPARTS:TP01003
Mechanical components
TRACEPARTS:TP01
Brakes, clutches and couplings
TRACEPARTS:TP01003
Mechanical components
TRACEPARTS:TP01
Brakes, clutches and couplings
TRACEPARTS:TP01003
Mechanical components
TRACEPARTS:TP01
Brakes, clutches and couplings
TRACEPARTS:TP01003
Mechanical components
TRACEPARTS:TP01
Brakes, clutches and couplings
TRACEPARTS:TP01003
Mechanical components
TRACEPARTS:TP01
Brakes, clutches and couplings
TRACEPARTS:TP01003
Mechanical components
TRACEPARTS:TP01
Brakes, clutches and couplings
TRACEPARTS:TP01003
Mechanical components
TRACEPARTS:TP01
Brakes, clutches and couplings
TRACEPARTS:TP01003
Mechanical components
TRACEPARTS:TP01
Brakes, clutches and couplings
TRACEPARTS:TP01003
Mechanical components
TRACEPARTS:TP01
Brakes, clutches and couplings
TRACEPARTS:TP01003