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

2017-01-17 Thread Iwan Ivanto
@Michael Hunger : For the configuration? My problem is i need to populate the data in the xml by writing each query containing element of my list one by one which takes a long time. @Florent Biville : Okay just looking for other options available to try :) On Tuesday, January 17, 2017 at 3:04

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

2017-01-17 Thread Florent Biville
Hi, I'm currently working on the issue with Stanford NLP, it's probably just a classpath conflict with JAXB. If you really want to programmatically create migrations, you can, using directly `liquigraph-core` and instantiating `Changelog` objects, but this will require some extra efforts. I think

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] 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] 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

[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