Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
03-22-2022 05:59 PM
Current version (Version 0.1.1-beta)
There's no current documentation about adding multiple labels.
How can multiple labels be added in Neo4j Data Importer?
Solved! Go to Solution.
03-23-2022 04:38 AM
Hello @coltontoscher and welcome to the Neo4j Community!
If you want multiple labels to a node, you must set them manually after the load. For example:
MATCH (p:Person)-[:ACTED_IN]->()
WITH DISTINCT p
SET p:Actor
This is covered in the course: Importing CSV Data into Neo4j | Free Neo4j Courses from GraphAcademy
Elaine
03-23-2022 04:38 AM
Hello @coltontoscher and welcome to the Neo4j Community!
If you want multiple labels to a node, you must set them manually after the load. For example:
MATCH (p:Person)-[:ACTED_IN]->()
WITH DISTINCT p
SET p:Actor
This is covered in the course: Importing CSV Data into Neo4j | Free Neo4j Courses from GraphAcademy
Elaine
06-09-2022 12:44 AM
can you do the same in admin import?
All the sessions of the conference are now available online