Hello,
I'm using liquibase neo4j plugin 4.10.0 on a Spring Boot Application.
When I add the following setting in the application.yml:
spring:
liquibase:
clear-checksums: true
I get an error on startup:
2022-05-11 16:32:01.418 ERROR [,,] 34389 ...
Hello,
I'm migrating my current Spring Boot Application from liquigraph usage to liquibase 4.10.0.
I have executed successfully the liquigraph migrate-to-liquibase command as documented here: Migrate to Liquibase - Liquigraph
/liquigraph-cli/liquigra...
Hello,
I'm migrating my liquigraph codebase to the neo4j plugin for liquibase: GitHub - liquibase/liquibase-neo4j (thanks for the tool).
Do you recommend a particular format (yml, xml or other) for writing neo4j migrations ?
Previously I wrote liquig...
Hello,
I'm using the neo4jClient to execute a custom query, and I'm returning a custom projection class with entities inside.
I need my entities to be hydrated with the data returned from the cypher query.
The issue is that relations are not hydrated...
Hello,
I have the following issue (SDN 6.1.5 and 6.2.0-SNAPSHOT) when executing a query returning a projection
java.lang.ClassCastException:
Cannot cast org.springframework.data.neo4j.integration.movies.shared.Movie
to
org.springframework.data.neo4j...
Hi, just for the record
I finished liquigraph -> liquibase migration some weeks ago.
Issues I had
As noted before, I had an issue on the checkSum computation (the migration CLI gave some bad value for some migrations)
Another issue particular to my...
Hello,
Fow now we use XML format (all the samples and all the issues I saw on liquibase neo4j used this format, I don't want to stay away for the basic usage atm).
I tested the YML format at it works fine though
atm, I executed the following script
MATCH (cs:`__LiquibaseChangeSet`)
WHERE cs.changeLog = 'liquibase.xml'
SET cs.checkSum = null;
It does the same as the thing we would expect from liquibase.Liquibase#clearCheckSums():
When you execute the migrati...
Thanks Gerrit for your answer !
No worries since I found a solution (even if not perfect )
As of now, I'm approaching the end of my app migration from OGM to SDN6.
I need to fix a misc issue and to do a performance comparison between the app before...
Hello,
I've made a local fix by using a copy of RecordMapAccessor.
I can now have my DTO projection class with an entity field and all of the entity relations mapped correctly. I'm using the neo4jClient with a custom mapping method to do that.
Basica...