Re: [Neo4j] Is there anyone using versioning / database migration on neo4j?

2017-01-16 Thread 'Michael Hunger' via Neo4j
Afaik Liquigraph also supports Java-based migrations, so that shouldn't be an issue. On Tue, Jan 17, 2017 at 8:51 AM, Iwan Ivanto wrote: > Currently i'm using a big list of data in java iterate it and save the > data each loop with repository. > But when i try using liquigraph i must to create

Re: [Neo4j] Is there anyone using versioning / database migration on neo4j?

2017-01-16 Thread Iwan Ivanto
Currently i'm using a big list of data in java iterate it and save the data each loop with repository. But when i try using liquigraph i must to create the query to save the data manually and insert the property manually too. In java i can just create an object each loop from a list and directl

Re: [Neo4j] Query performance on distinct paths

2017-01-16 Thread tomasz . kaszuba
Yes, there are indexes. I was wondering about the shortest path but I need all the paths that end at specific nodes, usually they will not be the shortests. I will try to see if the results are the same with this modification. On Tuesday, 17 January 2017 03:31:59 UTC+1, Michael Hunger wrote: >

Re: [Neo4j] Is there anyone using versioning / database migration on neo4j?

2017-01-16 Thread 'Michael Hunger' via Neo4j
What's the issue with it? Florent is certainly happy about feedback Michael Von meinem iPhone gesendet > Am 17.01.2017 um 03:50 schrieb Iwan Ivanto : > > Yes thats what i mean. Have you ever tried using liquigraph? > Yeah i saw on the neo4j blog that they want to implement flyway but it was

Re: [Neo4j] Is there anyone using versioning / database migration on neo4j?

2017-01-16 Thread Iwan Ivanto
Yes thats what i mean. Have you ever tried using liquigraph? Yeah i saw on the neo4j blog that they want to implement flyway but it was the post from 2015 i think. Is there another alternative beside liquigraph? On Tuesday, January 17, 2017 at 9:28:21 AM UTC+7, Michael Hunger wrote: > > Did you

Re: [Neo4j] Query performance on distinct paths

2017-01-16 Thread 'Michael Hunger' via Neo4j
I presume you have an index / constraint on nodeType1.fullname AND nodeType1.name?! not sure why you do the pattern match first and only then the property lookup. What version are you using? in Neo4j 3.1 for the query below you should see much better performance: match (ea:nodeType1 {name:"some

Re: [Neo4j] Is there anyone using versioning / database migration on neo4j?

2017-01-16 Thread 'Michael Hunger' via Neo4j
Did you see liquigraph? https://fbiville.github.io/liquigraph/ I presume that's what you mean? There was some work on a flyway implementation too but I'm not sure where that ended up. Michael On Mon, Jan 16, 2017 at 12:33 PM, Iwan Ivanto wrote: > Hi all, as the title say is there anyone using

Re: [Neo4j] neo4j java driver doesn't work

2017-01-16 Thread 'Michael Hunger' via Neo4j
You have to provide more details on what hasn't worked. Also in general it is not recommended to build java projects without a dependency manager like maven or gradle. Michael On Fri, Jan 13, 2017 at 3:35 PM, Ylenol Dias wrote: > I want to use neo4j with java.I looked everywhere and i don't wa

[Neo4j] neo4j java driver doesn't work

2017-01-16 Thread Ylenol Dias
I want to use neo4j with java.I looked everywhere and i don't want to do it the maven way , so i ,by accident, downloaded the driver (.jar) and a file (tools.jar ) all in one zip file,then i added it to my project libraries and used an available code which uses sessions to execute Cypher queri

[Neo4j] Is there anyone using versioning / database migration on neo4j?

2017-01-16 Thread Iwan Ivanto
Hi all, as the title say is there anyone using versioning / database migration on neo4j? Currently i want to use versioning / database migration on spring. If anyone use versioning or database migration please tell me some reference and pros-cons of using it. -- You received this message becau

[Neo4j] Subgraph access control configuration in enterprise edition

2017-01-16 Thread rien rienk
Hello everyone, It's written in the official and current documentation (3.1 : http://neo4j.com/docs/operations-manual/current/security/authentication-authorization/subgraph-access-control/ ) that a user can be configured to read, not write nodes labelled 'something' and / or relationships of ty

[Neo4j] Query performance on distinct paths

2017-01-16 Thread tomasz . kaszuba
Hi, I have a very expensive query that I'm trying to figure out how to optimise. match (ea:nodeType1 {name:"something1"})<-[:maps_to*]-(eb:nodeType1) with distinct ea, eb match (eb) where eb.fullname starts with "something" return ea.name , eb.name ; I've used