I want to make an index in every node I will make. According to this answer<http://stackoverflow.com/questions/17532876/neo4j-rest-api-with-php/17533449#17533449>to make an index is like this:
$client = new Client(new Transport('localhost', 7474)); $user = new Node($client); $user->setProperty('name', 'Josh Adell')->save(); $userIndex = new Everyman\Neo4j\Index\NodeIndex($client, 'users'); $userIndex->save(); $userIndex->add($user, 'name', $user->getProperty('name')); I run the code, it made a node but index was not made. So, please help me to solve this problem. Thank you. -- You received this message because you are subscribed to the Google Groups "Neo4j" group. To unsubscribe from this group and stop receiving emails from it, send an email to neo4j+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.