Well let's say I have 2 scripts for creating Nodes.

For the Appln's:

USING PERIODIC COMMIT 1000
LOAD CSV WITH HEADERS FROM "file:///C:/data/tls201_part01.txt" AS csvLine 
WITH csvLine LIMIT 100000
CREATE (p:Appln {     ID: toInt(csvLine.appln_id), 
                    docStdNameID: csvLine.appln_auth});

For the Title's:

USING PERIODIC COMMIT 1000
LOAD CSV WITH HEADERS FROM "file:///C:/data/tls202_part01.txt" AS csvLine 
WITH csvLine LIMIT 100000
CREATE (p:Title {     applnID: toInt(csvLine.appln_id), 
                    applnTitle: csvLine.appln_title});

Now how to connect them?

Appln <-----ApplnID ------Title

So with the Title Import, how can I say there take the ID from Appln and 
create a relation?

Thanks.

-- 
You received this message because you are subscribed to the Google Groups 
"Neo4j" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to