teemx
teemx
from the log I got : ``` 2023-12-20T11:51:29.633+01:00 WARN 11872 --- [nio-8061-exec-1] org.springframework.data.neo4j.cypher : Neo.ClientNotification.Statement.FeatureDeprecationWarning: This feature is deprecated and will be removed in future versions. MATCH (myClass:`my_class`) WHERE id(myClass)...
My domain class is : @Node("my_class") @Data @NoArgsConstructor @Accessors(chain = true) @EqualsAndHashCode public class MyClass implements IdentifiableClass { @Id @GeneratedValue private String id; @DynamicLabels private List labels; .... And my...