Hi All,
I am trying to use session from Spring Data Neo4j framework. I have the following session initiation method right now, but it is only a work around.
Configuration configuration = new Configuration.Builder()
.uri("bolt:...
Hello Everyone,
I am using Spring Boot with Neo4j-OGM. I am facing a problem while mapping a relationship inside @NodeEntity.
Here is what my code looks like:
@NodeEntity
public class Product {
@Id @GeneratedValue private Long id;
@Property(name="...
Thanks @gerrit.meier
How about combinational search with multiple parameters? I have around 10 properties at the moment that the user can use to search a Product node. These properties either belong to Product itself or its related nodes, and allow t...
Thanks! It works only if I return the relationship as you describe while defining the @RelationshipEntity and @NodeEntity for each of the related node I want to store. I wonder if there is a way to do it in a more simple manner.