Search code examples
neo4jnodesbloom

Is there a way to include hyperlinks in nodes in neo4j?


I am working on creating nodes and relationships. For a particular type of node, there is a hyperlink that I would like attach to it(perhaps as a property) so that users would be able to click and see more details on that node.

Does anyone know if that is possible? Happy to provide more details if needed.

Thanks in advance.


Solution

  • A standard string property would work just fine. It works as a regular hyperlink in the Neo4j browser.

    CREATE (n:Sample {link: "https://google.com"}) RETURN n;