Questions tagged [liquigraph]

It helps you maintain your Neo4j database state by defining and executing migrations in a variety of ways. This project is heavily inspired by Liquibase.

8 questions
3
votes
1 answer

How to generate Index and Constraint script for Neo4j store using Liquigraph in java?

I am trying to generate the Index and Constraint for my spring entities. I am not using any capability of spring-data to do it such as indexes.auto=assert. How can I generate the scripts with following conditions I need to generate scripts in…
JITHIN_PATHROSE
  • 1,134
  • 4
  • 14
  • 29
2
votes
2 answers

Spring Boot 2, LiquiGraph and 503 error with Actuator health endpoint - org.springframework.jdbc.UncategorizedSQLException

In my Spring Boot 2.0.0.M6 application, I have installed LiquiGraph by using the following Maven dependencies: dependency> org.liquigraph liquigraph-spring-boot-starter
1
vote
1 answer

Neo4j Cypher LiquiGraph - make migration script idempotent

I have created the following LiquiGraph migration script:
alexanoid
  • 24,051
  • 54
  • 210
  • 410
0
votes
1 answer

Liquigraph schema files missing?

We have a service in our site that uses neo4j for the database. Today when I tried to load up the service for development the project bombs out. I'm getting errors like this: org.springframework.beans.factory.BeanCreationException: Error creating…
William
  • 1,457
  • 5
  • 21
  • 46
0
votes
1 answer

Neo4j Liquigraph datasource - expected single matching bean but found 2

In SpringBoot Maven application I have configured two datasources - one Neo4j for Liquigraph @Bean @LiquigraphDataSource public DataSource neo4jDataSource() { final HikariConfig config = new HikariConfig(); …
alexanoid
  • 24,051
  • 54
  • 210
  • 410
0
votes
1 answer

Liquidgraph does not support bolt+routing in the url?

I'm trying to use this liquidgraph tool to manage our schemas on neo4j and endup in a situation where to url below works jdbc:neo4j:bolt://neo4j:7687 but this one jdbc:neo4j:bolt+routing://neo4j:7687 I get ERROR…
Eric Nascimento
  • 381
  • 3
  • 15
0
votes
1 answer

Neo4j Liquigraph and changeset with APOC triggers

I'd like to install the following triggers with Liquigraph changeset: CALL apoc.trigger.add('HAS_VALUE_ON_ADD_TO_INDEX', 'UNWIND {createdRelationships} AS r MATCH…
alexanoid
  • 24,051
  • 54
  • 210
  • 410
0
votes
1 answer

NoSuchMethodError: org.neo4j.driver.v1.Driver.session

After introducing LiquiGraph into my Spring Data Neo4j application I ran into the following issue: Caused by: java.lang.NoSuchMethodError:…
alexanoid
  • 24,051
  • 54
  • 210
  • 410