Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
11-03-2021 04:45 AM
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
11-14-2021 10:42 AM
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
All the sessions of the conference are now available online