Changing Relationship label

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

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