我使用Neo4jPHP编写一个片段,它将为我提供一个与“主”节点(A)连接的所有节点的数组。节点连接如下:
A -> B
B -> C
C -> D
C -> E
B -> F
这是我用neo4jPHP编写的代码:
$client = new Everyman\Neo4j\Client();
$querystring="MATCH path=(n {gid:'58731'})-[:contains*]-(z) RETURN ([x in nodes(path) | x.id]) as names";
$query=new Everyman\Neo4j\Cypher\Query($client,$querystring);
$result=$query->getResultSet();
foreach($result as $resultItem){
$resultArray[] = $resultItem['n'];
}
print_r($resultArray); // prints the array
问题是$ resultArray重复存储与主节点相关的节点(如下所述:Strange behavior in neo4j when I try to get all the nodes which relate with a master node)
我的问题是:有没有办法使用neo4jPhp来获取一个数组,该数组将包含仅与“主”节点相关的所有节点一次? 像这样:
$distinctNodes = [B,C,D,E,F]
由于 d。
答案 0 :(得分:1)
此查询应直接返回数组:
MATCH (n {gid:'58731'})-[:contains*1..]->(z) RETURN COLLECT(DISTINCT z.id) as names