Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
06-29-2022 10:21 AM
Hi,
Can you please help me to upload an alphanumeric variable from csv file to neo4j.
Example: Id: ABCD1234
I was tweaking various options using CREATE function but couldnt able to find solution.
Thanks.
06-29-2022 12:08 PM
Hi @Srihari
For a csv with headers, the code would look like this.
LOAD CSV WITH HEADERS FROM 'file:///data-with-headers.csv' AS line
CREATE (:SomeNode {id: line.Id})
All the sessions of the conference are now available online