Re: [Neo4j] Easiest way to load my data...

2017-08-22 Thread 'Michael Hunger' via Neo4j
Hi Ryan, did you see this https://neo4j.com/developer/guide-import-csv/ With plain cypher it's a bit tricky, as you can't have dynamic labels. LOAD CSV FROM "url/file" AS row WHERE row.SOURCE_TYPE='PERSON' and row.TARGET_TYPE='ORGANIZATION' MERGE (p:Person {name:row.SOURCE}) MERGE (o:Organizatio

Re: [Neo4j] Data is loss when i use the UNWIND

2017-08-22 Thread 'Michael Hunger' via Neo4j
Not really sure what you want to achieve. WITH problem, collect(problem) doesn't make sense, as you are aggregating on problem, so you have all 1 element collections. You don't need unwind for collections, just use size(measures) On Wed, Aug 16, 2017 at 11:55 AM, wrote: > MATCH (ORG:ORG)-[ORGH

Re: [Neo4j] Any reporting tool for Neo4J ??

2017-08-22 Thread Jean Villedieu
Hello, Our Linkurious Enterprise software is designed to make Neo4j data easy to browse with a search engine and a powerful visualization interface. Happy to arrange a demo if you want! What community edition are you talking about? We do not have one but we do have a (no-longer supported) grap

Re: [Neo4j] Re: Import delta

2017-08-22 Thread Koen Kleingeld
Hi thx , i will do some more testing .. i also have some CREATE statements since the input data set results sometimes in multiple rels between 2 nodes.. 2017-08-22 12:46 GMT+02:00 'Michael Hunger' via Neo4j < neo4j@googlegroups.com>: > This statement is idempotent, but also updates properties on

[Neo4j] Data is loss when i use the UNWIND

2017-08-22 Thread akshay . vakharia
MATCH (ORG:ORG)-[ORGHASPROBLEM:HAS]->(PROBLEM:PROBLEM) WITH PROBLEM, extract(NUM IN filter( V IN collect({ *PROB1*:PROBLEM.*PROB_ID*, *PROB2*: PROBLEM.*REGION*}) where V.PROB2= ‘*LONDON**’*) | NUM.PROB1) AS MEASURES1, extract(NUM IN filter( V IN collect({ *PROB1*:PROBLEM.*PROB_ID*, *PROB2

[Neo4j] Easiest way to load my data...

2017-08-22 Thread rw
Hello Neo4jers! I am a long time Cytoscape user and considering jumping to Neo4j...the biggest hurdle is that my technical prowess is lacking. All of my data is structured in Excel files in the following format: *SOURCE, SOURCE TYPE, INTERACTION, TARGET, TARGET TYPE* TIM COOK, PERSON, CEO OF, A

Re: [Neo4j] browser responds very slowly when typing in / deleting characters

2017-08-22 Thread Hans Otten
I have seen this issue as well. It usually occurs after you have run a query that returned a large result set -- 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+un

Re: [Neo4j] Re: Import delta

2017-08-22 Thread 'Michael Hunger' via Neo4j
This statement is idempotent, but also updates properties on nodes / rels HTH Michael LOAD CSV FROM "url" as row // get-or-create-node MERGE (n1:Node1 {row.id1}) // update prop SET n1.prop1 = row.prop1 // get-or-create-node MERGE (n2:Node2 {row.id2}) // update prop SET n2.prop2 = row.prop2 // get