Vinelab / NeoEloquent

The Neo4j OGM for Laravel
MIT License
633 stars 197 forks source link

edges #367

Open ENGAHMAD97 opened 2 years ago

ENGAHMAD97 commented 2 years ago

i have this relation inside CompanyM node public function work() { return $this->hasMany('App\Models\CompanyM', 'WorkedAt'); }

and i am trying to get the edge like this $w = $items->work()->edges($w);

w is a CompanyM node

but i got an empty value

any help?

thanks