1

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

例如,我有一个“用户”节点,它连接到许多“资源”节点,而这些节点又连接到固定数量的预定义“元资源”节点。“资源”节点具有属性,“元资源”节点具有每种资源类型的元属性。我如何知道从“用户”节点开始访问“元资源”节点的属性?在 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 网络控制台,所有关系和节点都已正确插入。

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

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

然后它只输出 NULL。

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

干杯

4

1 回答 1

1

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

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

于 2016-07-22T20:54:33.060 回答