Hi, could you provide example output, you would want to achieve?
Do you want to create new node with new label or add labels to existing nodes?
Think you should look into usage of some apoc functions http://neo4j-contrib.github.io/neo4j-apoc-procedures/3.5/nodes-relationships/data-creation/ CALL apoc.create.node(['Label'], {key:value,…}) create node with dynamic labels CALL apoc.create.nodes(['Label'], [{key:value,…}]) create multiple nodes with dynamic labels CALL apoc.create.addLabels( [node,id,ids,nodes], ['Label',…]) adds the given labels to the node or nodes