I'm new to Cypher-DSL and starting to build some dynamic queries in Spring Neo4J.
I see in the documentation that you can use equalsIgnoreCase for Querydsl Predicate
Predicate predicate = user.firstname.equalsIgnoreCase("dave")
.and(user.last...
Hi all,
I am using Spring Data Neo4J 6.1.2 and would like to know if you can apply projections to dynamic relationships to retrieve only fields I am interested in.
Sample of node class:
@Node("Entity")
@Data
public class Entity {
@Id
@Genera...
Hi all,
I am using Spring Data Neo4J 6.1.2 and would like to retrieve node entities by a relationship property. I am currently using dynamic relationships.
On the node entity I have this:
@Node("Entity")
@Data
public class Entity {
@Id
@Gene...
OK thanks Gerrit. I've currently worked round it by mapping the fields I need through a response DTO.
I think the dynamic relationship feature is a very powerful addition to Spring Neo4J. It will hopefully allow us to build customisable knowledge gra...