neoxygen / neo4j-neoclient

Simple PHP HttpClient for the Neo4j ReST API with Multi DB Support
MIT License
121 stars 138 forks source link

specify $start and $end nodes for Paths using Node identifier #11

Closed Mulkave closed 9 years ago

Mulkave commented 9 years ago

One thing that would be really helpful here if we could be able to add the label identifier as well. i.e.

$start = ['label' => 'User', 'id' => 123];
$end = ['label' => 'Phone', 'id' => 987];
$paths = $client->getPathBetween($start, $end);