GraphAware\Neo4j\OGM\Metadata\NodeEntityMetadata::getNonLazyRelationships PHP Метод

getNonLazyRelationships() публичный Метод

Note that currently relationships that are not of type "collection" are considered non-lazy.
public getNonLazyRelationships ( ) : RelationshipMetadata[]
Результат RelationshipMetadata[]
    public function getNonLazyRelationships()
    {
        $rels = [];
        foreach ($this->relationships as $relationship) {
            if (!$relationship->isLazy()) {
                $rels[] = $relationship;
            }
        }
        return $rels;
    }