Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
03-11-2020 01:26 PM
I want to be able to create one node from two different columns in a CSV when importing the data.
Column 1: AE19
Column 2: 1202
Resulting node: AE19.1202
Is there a cypher, neo4j, or apoc command that can do this when loading the data in from a CSV?
Solved! Go to Solution.
03-11-2020 01:58 PM
Hey @matthew.cash,
When you are creating a node, use the following example as a potential approach:
MERGE (n:Node {combined: toString(Column 1) + toString(Column 2)})
-yyyguy
03-11-2020 01:58 PM
Hey @matthew.cash,
When you are creating a node, use the following example as a potential approach:
MERGE (n:Node {combined: toString(Column 1) + toString(Column 2)})
-yyyguy
03-11-2020 02:23 PM
worked perfect, thank you!
All the sessions of the conference are now available online