neoxygen / neo4j-neoclient

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

Refactor Result Formatter for identifiers usage #18

Closed ikwattro closed 9 years ago

ikwattro commented 9 years ago

Currently, it is not possible to use identifiers in the result to select nodes to work on, for e.g. :

MATCH (n:User)-[:FOLLOWS*2]->(fof) RETURN n, collect(fof) AS friendOfFriend;

with the above query you can not take only the friendOfFriend from the resultSet.

I want to refactor the response formatter and add a ->get method to add this functionality.

What do you think @Mulkave ?