neo4jphp icon indicating copy to clipboard operation
neo4jphp copied to clipboard

PHP wrapper of the Neo4j REST interface

Results 39 neo4jphp issues
Sort by recently updated
recently updated
newest added

When in batch you have few operations and one of them failed, the exception is not raised and all batch commands are marked as succeed. I think the source of...

i tried saving aes256 encrypted password in neo4j which failed as described here https://github.com/neo4j/neo4j/issues/2582 but neo4j didn't raise any error and the saved node was empty

I have [this package](http://github.com/vinelab/neoeloquent) that depends on **neo4jphp** and whenever I need to install that package in a project using composer with `minimum-stability: stable` composer says that it cannot resolve...

I have used the below code to get all the node with label 'user ' and property 'id', and value '12345',but it returns null, But when I used only label...

Example documentation can be viewed at: http://mikesir87.github.io/neo4jphp/docs/index.html Another pull request will come in a second regarding the update from docblox to phpdoc. It appears docblox was merged into the phpDocumentor...

Add options to the transport for ssl request. Example: $transport = new Transport\Curl("127.0.0.1", "443"); $sslOptions = array(CURLOPT_SSL_VERIFYPEER => true, CURLOPT_SSLCERT => "/path/to/cert"); $transport->useHttps(true, $sslOptions); OR $transport = new Transport\Stream("127.0.0.1", 443);...

Related to #18 Added: - addSimplePointLayer - addNodeToLayer - getLayer - findGeometriesWithinDistance - findGeometriesInBBox First working version, not fully unit tested but tested functionality and works