Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在创建节点和关系。对于特定类型的节点,我想附加一个超链接(可能作为属性),以便用户能够单击并查看有关该节点的更多详细信息。
有谁知道这是否可能?如果需要,很高兴提供更多详细信息。
提前致谢。
标准的字符串属性可以正常工作。它在 Neo4j 浏览器中用作常规超链接。
CREATE (n:Sample {link: "https://google.com"}) RETURN n;