[Neo4j] Introducing koa-neo4j - a NodeJs package for serving Neo4j as domain-specific REST APIs

2016-09-16 Thread Keyvan Mir Mohammad Sadeghi
Hi everyone, I have developed and open-sourced a NodeJs package that allows serving Neo4j as domain-specific REST APIs. Using this package, one can define her own REST routes instead of endpoints (REST or Bolt) provided by Neo4j instance. Comments and feedback very much appreciated!

[Neo4j] Re: Neo web interface; closing nodes with the mouse?

2016-09-16 Thread vicente.rives via Neo4j
Hi, Is there any updates on this topic? Thanks! -- Vicente J. Rives Molina On Friday, 6 February 2015 10:27:13 UTC+1, Josef Karthauser wrote: > > I was wondering.. in the Neo4J web interface shell, you can double click > on nodes in the visual output, and they "open up" to show their >

[Neo4j] Need solution for below err.

2016-09-16 Thread lahu sakhare
org.neo4j.driver.v1.exceptions.value.Uncoercible: Cannot coerce PATH to Java List at org.neo4j.driver.internal.value.ValueAdapter.asList(ValueAdapter.java:131) at com.kpit.diagnostics.driver.cypher.BoltCypherExecutor.convert(BoltCypherExecutor.java:78) at

Re: [Neo4j] Schema index doesn't slow insertion

2016-09-16 Thread 'Michael Hunger' via Neo4j
Can you share more details on what you do? do you have a constraint on the label property combination? otherwise teh lookup portion of merge always has to do a full label scan. Run your merge statement with PROFILE or EXPLAIN and share it with us. On Wed, Sep 14, 2016 at 1:59 AM, Sebastian

[Neo4j] Support for chef cookbook for Neo4j 3.x

2016-09-16 Thread Saad Khan
I have no been able to find any valid script that helps the users to use chef cookbook for Neo4j 3.x installation. Though it might be an easy script to write, but I believe Neo4j should provide the community members with a cookbook which supports 3.x installation. -- You received this

[Neo4j] Re: ANN Neo4J Server Chef cookbook updates

2016-09-16 Thread Saad Khan
Hi Micheal, I have seen that there were changes in the attributes to support 3.x neo4j.properties but does the provided script support the installation for Neo4j 3.x? On Saturday, October 5, 2013 at 11:01:34 AM UTC-7, Michael Klishin wrote: > > It has been some time since Neo4J Chef cookbook

Re: [Neo4j] Introducing koa-neo4j - a NodeJs package for serving Neo4j as domain-specific REST APIs

2016-09-16 Thread 'Michael Hunger' via Neo4j
Really nice, do you have an an example project and perhaps a blog post or screencasts that demoes it in action? It's kinda similar to my github.com/jexp/cypher-rs project, that stores cypher queries at an endpoint and then allows GET/POST requests on those? Michael On Thu, Sep 15, 2016 at

[Neo4j] Djikstra with Cost Cypher Implementation?

2016-09-16 Thread Ben Campbell
Anyone know when the Djikstra/A* with cost implementation is being implemented in cypher? It appears to have been accessible from the Web API for a long time, but no easy way to use it when using bolt? Is there a reliable workaround? I basically want to call shortestPath but specify a cost

Re: [Neo4j] Djikstra with Cost Cypher Implementation?

2016-09-16 Thread 'Michael Hunger' via Neo4j
Hi Ben, it is exposed as user defined procedure in the apoc library. You can find it here: https://neo4j-contrib.github.io/neo4j-apoc-procedures/#_graph_algorithms_work_in_progress Install Instructions (just download and drop the jar into NEO4J_HOME/plugins) are in the readme: