Neo4j-PHP-OGM
Neo4j-PHP-OGM copied to clipboard
A doctrine2 style library to access neo4j graphs
A long time ago I use this library in some of my projects with Neo4j. The little time of using it, this error began to appear in some of the...
I can't figure out how to remove a simple relationship. Suppose I have a Person Entity which has a collection of friends (also Person). Say John is friend with Jimmy....
How to execute some operations in transaction. How the transactions commit or rollback are handled?
I have setup a model MedicalIssue with _``` /** * @OGM\ManyToMany(relation="medicalIssue") */ protected $symptoms; function __construct(DoctorPatient $doctorPatient = null) { $this->symptoms = new ArrayCollection(); if ($doctorPatient !== null) { $this->setDoctorPatient($doctorPatient);...
I am trying to integrate the data mapper into yii2 and i have the following error [Semantical Error] The annotation "@HireVoice\Neo4j\Annotation\Entity" in class common\models\neo4j\AppointmentType does not exist, or could not...
Hi, I have some entities with properties relations to a second node : ``` Class MainNode ( /** * @OGM\ManyToOne(relation="linkSecondNode") */ protected $secondNode; /** * * @return mixed */ public...
how can i run pure cypher query?
Some bug fixes
Hi, I would like to have your opinion on the way of adding `MATCH` clauses. At the moment, when we chain `->match()` methods [you add a comma](https://github.com/lphuberdeau/Neo4j-PHP-OGM/blob/master/lib/HireVoice/Neo4j/Query/Cypher.php#L344), to separate the...
Example: ``` class Cinema { /** * @OGM\Index(name="FulltextIndex", type="fulltext") */ protected $name } $cinema = new Cinema(); $cinema->setName("Test"); $this->manager->persist($cinema); $this->manager->flush(); ``` Run cypher query "START node = node:FulltextIndex("name:tes*") RETURN node"...