我在Neo4j我的国家/地区索引
(从国家/地区选择*)=> 3输出(土耳其,塞浦路斯和英格兰)
并在我的PHP代码上我在Neo4j上创建它们
$transaction = $this->neo->beginTransaction();
foreach(Country::find() as $key => $val)
{
$querya = new Everyman\Neo4j\Cypher\Query($this->neo, "CREATE (country:Country { pid:".$val->id.",name : '".$val->name."'})");
$result = $transaction->addStatements(array($querya));
}
$transaction->commit();
但在资源管理器上我看到有6个索引; 2土耳其,2 ..,2 ..
我在哪里做错了?
由于