Beispiel #1
0
 public function __construct($name = null, array $uniqueProps = null)
 {
     $neo4td = new Neo4td();
     $this->setClient($neo4td->getClient());
     if ($uniqueProps !== null) {
         foreach ($uniqueProps as $property) {
             $query = "CREATE CONSTRAINT ON ({$name}:{$name}) ASSERT {$name}.{$property} IS UNIQUE";
             $query = new Query($this->client, $query);
             $this->client->executeCypherQuery($query);
         }
     }
     if ($name !== null) {
         $this->name = $name;
     }
 }
Beispiel #2
0
 public function __construct($index = false)
 {
     $neo4td = new Neo4td();
     $this->setClient($neo4td->getClient());
 }