cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

Changing Relationship label

rbonazzo
Node Link

Hi,
is there a way in bloom that I can change the label of a relationship?
For example, in Neo4j Browser I can change the label by assigning it a property. In Bloom I can't find the equivalent .
Screen shot from Neo4j Browser

Screen shot from Bloom

Thanks for helping

Rinaldo

1 REPLY 1

It's currently not possible in bloom directly.
You can upvote the feature request here:

What you could try (not sure if it works) is to replace the relationship with an apoc virtual relationship and use the property as type.

MATCH (a:Node)-[rel]->(b:Node)
RETURN a,b, apoc.create.vRelationship(a, rel.property, properties(rel), b) as rel