Linkable property

Hi,

there is no "http property": https://neo4j.com/docs/java-reference/current/java-embedded/property-values/. Is there a way for creating a property, which can be clicked on the map ?

Thanks ,

Michel

Hello @Michel :slight_smile:

You can store links as string:

CREATE (t:Test) 
SET t.url = "https://community.neo4j.com/" 
RETURN t

Then you can click on the link through Neo4j browser:

Regards,
Cobra

2 Likes

I can click it, it works. Would it be work wit click on the node as well ?

In Neo4j browser, you can only click on the right panel link, but I don't know about other apps. It's technically possible, I suppose, if you develop your own visualization tool.

1 Like