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

Current version (Version 0.1.1-beta)
image

There's no current documentation about adding multiple labels.
How can multiple labels be added in 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