我有一个节点“mynode”。 我怎么能说它是一个叶子节点?我想得到一个布尔值(true / false)。喜欢
if(mynode is a leafnode)
{
......
}
我在java编码。
答案 0 :(得分:0)
在Java中: node.getRelationships(Direction.OUTGOING)将为您提供传出关系。 http://api.neo4j.org/1.8.2/org/neo4j/graphdb/Node.html#getRelationships%28org.neo4j.graphdb.Direction%29
您也可以为此编写Cypher查询:
start n=<look up your node>
match n-[r]->()
return count(r) as outgoing