neo4jphp
neo4jphp copied to clipboard
PHP wrapper of the Neo4j REST interface
When i was trying to get the current Row from a ResultSet (`$query->getResultSet()->current();`) that can be empty, i'd got the follow error: ``` Notice: Undefined offset: 0 in vendor/everyman/neo4jphp/lib/Everyman/Neo4j/Query/ResultSet.php on...
Bug in case of accessing non-existent column in Row class: ``` php $columns = array('name'); $data = array('Brenda'); $row = new Row($this->client, $columns, $data); echo $row['age']; // Brenda ??? ```
can I add a cypher query in batch in neo4jphp? It seems to be possible with REST api? I know transactions are possible with cypher queries but i need batch...
Path::getLength() just calls Path::count(). Path::count() documentation also indicates it counts the relations in a path, which isn't true as it gives a count of nodes or relations in a path...
http://blog.travis-ci.com/2013-12-16-test-php-code-with-the-hiphop-vm/ http://docs.travis-ci.com/user/build-configuration/#Rows-That-are-Allowed-To-Fail
Hi, I am very new with neo4j and of course with neo4jphp, so i dont know if i am missing something. When the batch mode is on and i create...
The db path to the rest endpoint of a neo4j server is configurable, so there should be a way to configure the path in the library too.
async ?
Would it be possible to make this lib async using CURL multi ? This lib might be of help https://github.com/ericmuyser/php-class-curl/blob/master/src/curl.php but there is still a need to run a ->update()...
http://py2neo.org/geoff/ Also, the GEOFF extension: https://github.com/neo4j/neo4j-geoff Consider deprecating or removing the client-side GEOFF implementation.