How to add multiple labels to nodes when using Neo4j Data Importer?

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

2 Likes