java-rest-binding
java-rest-binding copied to clipboard
Java Bindings for the Neo4J Server REST API, providing an implementation of GraphDatabaseService
``` Internal server error, for (POST) [/api/meetings/participate] -> play.api.Application$$anon$1: Execution exception[[RuntimeException: Error reading as JSON '502 Bad Gateway 2014-11-15T17:32:11.834142+00:00 app[web.2]: The server returned an invalid or incomplete response. 2014-11-15T17:32:11.834143+00:00 app[web.2]:...
Client and server in different machines _Client:_ - Neo4j lib 1.7.2 - Neo4j rest graphdb 1.7 - java version "1.6.0_24" OpenJDK Runtime Environment (IcedTea6 1.11.1) (6b24-1.11.1-4ubuntu3) OpenJDK Client VM (build...
Hello, Are there any plans to merge 2.0.1 into master? Or is the support for this officially over? Thanks!
The query engine should work against cypher transaction enpoint(http://neo4j.com/docs/stable/rest-api-transactional.html), not the deprecated legacy cypher enpoint(http://neo4j.com/docs/stable/rest-api-cypher.html)
@jexp is it possible to get a 2.0.2 release or `2.0.2-SNAPSHOT` at `http://m2.neo4j.org/content/repositories/snapshots/`?
public class RestGraphDatabase extends AbstractRemoteDatabase { [...] public Schema schema() { throw new UnsupportedOperationException(); }
Hi, I have added few method in java-rest-binding to make it work with neoclipse. Please find my changes and let me know if there is something wrong.
Here is my initial implementation of RestOldTraverserWrapper. It provides some public static org.neo4j.graphdb.Traverser traverse(...) implementations to support the old style Traverser. The only not implemented is the one with ReturnEval...
@jexp I'm not sure if this makes any sense: ``` @Override public boolean isAvailable(long l) { // not really sure what to use here return restAPI != null && cypherQueryEngine...
It is possible to create a node with labels directly? Right now I am implementing a cypher query but would be nice if the create method from RestApi would support...