The query used a deprecated function: `id`

There is a previous post where we were told to create the following bean and it would suppress the warning. It worked for me with springboot 3.1.1, but reappeared when I tried 3.1.2.

  @Bean
    Configuration cypherDslConfiguration() {
        return Configuration.newConfig().withDialect(Dialect.NEO4J_5).build();
    }
2 Likes