Re: [Neo4j] Duplicate Nodes

2014-01-07 Thread Michael Hunger
you probably have items starred more than once so you have to aggregate somehow, e.g. RETURN m,collect(r) as ratings or RETURN m,collect(distinct type(r)) as star_types or WITH m,type(r) as stars, count(*) as cnt RETURN m, collect([stars,cnt]) as ratings Am 08.01.2014 um 06:58 schrieb Suka

Re: [Neo4j] Re: Yet another graph visualization engine

2014-01-07 Thread Mark Needham
Oh actually I just needed to add a repository so it could pick that up. I'll send you a PR: thirdparty-releases JBoss Thirdparty Releases https://repository.jboss.org/nexus/content/repositories/thirdparty-releases On 8 January 2014 07:11, Mark Needham wrote:

Re: [Neo4j] Re: Yet another graph visualization engine

2014-01-07 Thread Mark Needham
Hey, Looks really cool! I wanted to give it a go on my machine but I'm struggling a bit. I did a mvn clean install at the top level and I got this exception: [ERROR] Failed to execute goal on project datagr4m-application: Could not resolve dependencies for project org.datagr4m:datagr4m-applicati

[Neo4j] Duplicate Nodes

2014-01-07 Thread Sukaant Chaudhary
Hi, Please help me to remove duplicate nodes. In the following query, I'm getting the duplicate nodes: START n=node(4) MATCH p=(n)-[:ADDED_TO_GOOGLE_CALENDAR*]->(m) WITH DISTINCT m MATCH q=(n)-[r:ZERO_STAR|ONE_STAR|TWO_STAR|THREE_STAR|FOUR_STAR|FIVE_STAR]->(m) WITH r, m RETURN m, r; -Sukaant Chau

Re: [Neo4j] Connecting php to neo4j on windows.

2014-01-07 Thread Michael Hunger
Please ask this question on stackoverflow, as it probably is much more tied to PHP on Windows than Neo4j on Windows. In general for Neo4j & PHP http://neo4j.org/develop/php Thanks Michael Am 08.01.2014 um 05:36 schrieb Gin Sky : > > Can anyone please tell me what are the exact steps for conn

[Neo4j] Connecting php to neo4j on windows.

2014-01-07 Thread Gin Sky
Can anyone please tell me what are the exact steps for connecting php to neo4j on windows? thanks you! -- You received this message because you are subscribed to the Google Groups "Neo4j" group. To unsubscribe from this group and stop receiving emails from it, send an email to neo4j+unsubscr.

Re: [Neo4j] Neo4j 2.0 (CSV) Batch Importer execution error

2014-01-07 Thread Michael Hunger
the import.sh is for the binary download, https://github.com/jexp/batch-import/tree/20#binary-download use import-mvn.sh test.db nodes.csv rels.csv I added a check to import.sh to produce a sensible error message Am 07.01.2014 um 19:01 schrieb Tiago Sequeira : > Hi guys, I am trying to use

[Neo4j] Re: Yet another graph visualization engine

2014-01-07 Thread Jim Salmons
BTW, Martin, the Dr. Who Use Case presentation here: http://datagr4m.com/node/9 is itself AWESOME! :-) And your great presentation makes my case for GraphGist integration. It is EASY and exciting to read that page and imagine if we had GraphGist integration for Datagr4m how the //graph directiv

[Neo4j] Re: Yet another graph visualization engine

2014-01-07 Thread Jim Salmons
Holy mackerel, Martin! :-) Congratulations. A quick visit to your site was amazing. I have not downloaded and tried it yet, but what I see makes me think that this is like dynamic Graphviz for Neo4j visualization (and, I assume by extension, graph DBs in general). I can say, however... Peter, A

[Neo4j] Neo4j 2.0 (CSV) Batch Importer execution error

2014-01-07 Thread Tiago Sequeira
Hi guys, I am trying to use batch-import but it always giving an execution error, anyone knows what could be? Thanks in advance. --- export JAVA_HOME=/home/ts/jdk1.7.0_45 export PATH=$PATH:$JAVA_HOME/bin *mvn -v* /home/ts/jdk1.7.0_45 Maven version: 2.0.7 Java version: 1.7.0_45 OS name: "linux"

[Neo4j] Yet another graph visualization engine

2014-01-07 Thread Pernollet Martin
Hi, I just would like to announce that I've released Datagr4m, a framework dealing with graph visualization. Why another one? It let you build hierarchical clusters of nodes in a graph, which makes the layout more readable than standard graph layouts. It has other advantages that you can read

Re: [Neo4j] cache_type in neo4j 2.0

2014-01-07 Thread Alex Frieden
Woot thanks Wes! On Tue, Jan 7, 2014 at 11:32 AM, Wes Freeman wrote: > It goes in neo4j.properties > > http://docs.neo4j.org/chunked/milestone/kernel-configuration.html > > Wes > > On Tue, Jan 7, 2014 at 10:59 AM, Alex Frieden wrote: > >> Hi all, I want to experiment with some changing in cach

Re: [Neo4j] Neo4J over the wire

2014-01-07 Thread Paul Wilson
I'll do that - thanks On Tuesday, 7 January 2014 14:08:52 UTC, Michael Hunger wrote: > > The branch already points to Neo4j 2.0 > > I have to clean out some quirks and release it. > > so you can already build it locally for testing. > > https://github.com/neo4j/java-rest-binding/tree/2.0-labels-an

Re: [Neo4j] cache_type in neo4j 2.0

2014-01-07 Thread Wes Freeman
It goes in neo4j.properties http://docs.neo4j.org/chunked/milestone/kernel-configuration.html Wes On Tue, Jan 7, 2014 at 10:59 AM, Alex Frieden wrote: > Hi all, I want to experiment with some changing in cache_type. However I > can't find it in any of the config files. Is it intentionally le

[Neo4j] cache_type in neo4j 2.0

2014-01-07 Thread Alex Frieden
Hi all, I want to experiment with some changing in cache_type. However I can't find it in any of the config files. Is it intentionally left out and if so out of which one? -- You received this message because you are subscribed to the Google Groups "Neo4j" group. To unsubscribe from this gro

Re: [Neo4j] Neo4J over the wire

2014-01-07 Thread Michael Hunger
The branch already points to Neo4j 2.0 I have to clean out some quirks and release it. so you can already build it locally for testing. https://github.com/neo4j/java-rest-binding/tree/2.0-labels-and-indexes Am 07.01.2014 um 14:51 schrieb Paul Wilson : > Hi, > > Any ideas when the 2.0.0 versio

[Neo4j] Neo4J over the wire

2014-01-07 Thread Paul Wilson
Hi, Any ideas when the 2.0.0 version of the Java REST bindings will be available for Neo4J 2? Is a release expected? Regards, Paul -- You received this message because you are subscribed to the Google Groups "Neo4j" group. To unsubscribe from this group and stop receiving emails from it, sen

Re: [Neo4j] performance with many relationships per node

2014-01-07 Thread Jason W
Thanks Michael - I understood your workaround and see that it would work. However, I wanted to confirm that neo4j does not have native ability to filter quickly by relationship label? I just did some more testing using the "profile" statement, and it looks like it is doing some native filtering