如何使用NEO4J-PHP-OGM访问2个节点的节点属性

时间:2016-07-20 16:08:36

标签: neo4j graphaware neo4j-php-ogm

我无法理解如何使用neo4j-php-ogm库访问2个关系的属性。

比方说,我有一个"用户"节点,连接到 MANY "资源"节点,作为回报,每个节点都连接到固定数量的预定义" MetaResource"节点。 "资源"节点有属性和" MetaResource"节点具有每种资源类型的元属性。我怎么知道访问" MetaResource"的属性?节点从"用户"开始节点?在Neo4j中,这样的路线如下:

(user)-[r:HAS_RESOURCE]->(resource)-[m:METARESOURCE]->(metaResource)

我的示例用户实体:

/**
 * @OGM\Node(label="User")
 */

class User
{
    /**
     * @OGM\GraphId()
     * @var int
     */
    private $id;

    /**
     * @OGM\Relationship(type="HAS_RESOURCE", direction="OUTGOING", targetEntity="\AppBundle\Entity\Resources", collection=true)
     * @var ArrayCollection|\AppBundle\Entity\Resources[]
     */
    protected $resources;

    /**
     * @return \Doctrine\Common\Collections\ArrayCollection|\AppBundle\Entity\Resources[]
     */
    public function getResources()
    {        
        return $this->resources;
    }

    /**
     * @return \Doctrine\Common\Collections\ArrayCollection|\AppBundle\Entity\Resources[]
     */
    public function getResource($name)
    {

        foreach($this->resources as $resource){
            if($resource->getResourceType() == $name){
                return $resource;
                break;
            }
        }        
    }


    /**
     * @param AppBundle\Entity\Resources $resources
     */
    public function addResource(Resources $resources)
    {
        if (!$this->resources->contains($resources)) {
            $this->resources->add($resources);
        }
    }
}

我的示例资源实体:

/**
 * @OGM\Node(label="Resources")
 */

class Resources
{
    /**
     * @OGM\GraphId()
     * @var int
     */
    protected $id;

    /**
     * @OGM\Property(type="int")
     * @var int
     */

    protected $resourcecount;    


   /**
    * @OGM\Relationship(type="METARESOURCE", direction="OUTGOING", targetEntity="\AppBundle\Entity\MetaResource", collection=false)
    * @var MetaResource
    */

    protected $metaResource;

    /**
     * @param \AppBundle\Entity\MetaResource $metaResource
     */

    public function __construct(MetaResource $metaResource)
    {
        $this->metaResource = $metaResource;
    }    

    public function getId()
    {
        return $this->id;
    }

    public function getResourceCount()
    {
        return $this->resourcecount;
    }

    public function setResourceCount($resourcecount)
    {
        $this->resourcecount = $resourcecount;
    }

    /**
     * @return \AppBundle\Entity\MetaResource
     */

    public function getMetaResource()
    {        
        return $this->metaResource;
    }


}

我的示例MetaResource实体:

/**
 * @OGM\Node(label="MetaResource")
 */

class MetaResource
{
    /**
     * @OGM\GraphId()
     * @var int
     */
    protected $id;

    /**
     * @OGM\Property(type="string")
     * @var string
     */

    protected $resourceType;

    /**
     * @OGM\Property(type="string")
     * @var string
     */

    protected $name_DE;    

    /**
     * @OGM\Property(type="string")
     * @var string
     */

    protected $icon;

    /**
     * @OGM\Property(type="string")
     * @var string
     */

    protected $iconColour;

    /**
     * @OGM\Property(type="string")
     * @var string
     */

    protected $colour;  

    public function getResourceType()
    {
        return $this->resourceType;
    }


    public function getName_DE()
    {
        return $this->name_DE;
    }


    public function getIcon()
    {
        return $this->icon;
    }


    public function getIconColour()
    {
        return $this->iconColour;
    }

    public function getColour()
    {
        return $this->colour;
    }

}

最后来自我的控制器的代码,它建立了关系:

$metaResource=$em->getRepository(MetaResource::class)->findOneBy('resourceType', 'wood');  
$rWood = new Resources($metaResource);            
$rWood->setResourceCount(20);
$em->persist($rWood);
$em->flush();
$user->addResource($rWood);

如果我现在看看Neo4j web控制台,所有关系和节点都已正确插入。

现在,如果我获得了$user->getResources()用户的资源,我成功获得了所有资源对象,但是" $ metaResource" property始终为NULL,而不是我的MetaResource实体的预期Object。例如,如果我这样做:

foreach($user->getResources() as $resource){
    var_dump($resource->getMetaResource());        
}

然后它只输出NULL。

另一方面,如果我直接获取资源对象(例如使用$resource = $em->getRepository(Resources::class)->findOneById(123)),然后尝试使用$resource->getMetaResource()获取连接的MetaResource,它就可以工作。我错过了什么?

干杯

1 个答案:

答案 0 :(得分:1)

我在这个用例方面取得了一些进展。我现在正在使用一个可以处理这个用例的代理生成器(这实际上是lib中一个很大的缺失部分,但需要时间来实现)。

所以请使用最新版本1.0.0-beta7进行测试。