I am beginner with Neo4j Rest API. I am using
Everyman<https://github.com/jadell/neo4jphp> php
library to develop my application. I have problem with creating node with
labels.
use Everyman\Neo4j\Client,
Everyman\Neo4j\Transport,
Everyman\Neo4j\Node,
Everyman\Neo4j\Relationship;use Everyman\Neo4j\Cypher;
public function indexAction(){
$client = new Client('localhost', 7474);
$user = new Node($client);
$user->setProperty('name', 'Rohan Chingula');
$user->save()->addLabels(array('Users'));}
while I run code I am getting
/var/www/zf2-tutorial/vendor/everyman/neo4jphp/lib/Everyman/Neo4j/Command/SetLabels.php:43
Message: Cannot set a non-label
Could any one help me how do i resolve this?.
--
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 [email protected].
For more options, visit https://groups.google.com/groups/opt_out.