使用 neo4jphp 获取包含与主节点相关的所有节点的数组

Use neo4jphp to get an array with all the nodes related to a master node

我使用 Neo4jPHP 编写了一个片段,它将为我提供一个数组,其中包含与 "master" 节点 (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 重复存储与主节点相关的节点(如此处解释:

我的问题是:有没有办法使用 neo4jPhp 取回一个数组,该数组将只包含与 "master" 节点相关的所有节点一次? 像这样:

 $distinctNodes = [B,C,D,E,F]

谢谢 D.

这个查询应该直接return数组:

MATCH (n {gid:'58731'})-[:contains*1..]->(z) RETURN COLLECT(DISTINCT z.id) as names