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.

Linkable property

Michel
Node Clone

Hi,

there is no "http property": Property values - Java Reference. Is there a way for creating a property, which can be clicked on the map ?

Thanks ,

Michel

1 ACCEPTED SOLUTION

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.

View solution in original post

3 REPLIES 3

Hello @Michel

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

Michel
Node Clone

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.