1

I have searched it over Internet but not able to find anything related to this.

Is there any way to visualize the properties attributes over the edges(links) in neo4j webadmin interface?

If yes then please guide me how can I do that?

If no then please suggest me that Is there any tool to do that or what can I do to get this in web interface.

Thanks

4

1 回答 1

0

如果我理解正确,您希望查看作为关系的一部分存储的属性。在 Admin Web UI 中有很多方法可以做到这一点。

例如,在数据浏览器中,输入以下 Cypher 查询以查看数据库中的所有关系,包括它们的属性:

匹配 ()-[r]->() 返回 r;

如果您知道您感兴趣的特定关系的 ID(假设是 92),请使用:

开始 r=rel(92) 返回 r;

我只能给出最简单的答案。如果您有更复杂的问题,请添加更多详细信息。

于 2014-02-01T21:23:52.653 回答