I am using neo4j REST API to create nodes and relationships. I refer following documentation.
Neo4j Graph Database Platform
Using the HTTP API - HTTP API
Actions that can be performed using the Cypher transaction HTT...
I am trying to find a way to implement a projection for mapped properties. Following is my code snippets.
Domain Entity
@Data
@Node("DATspace")
public class DatSpace {
@Id @GeneratedValue
private Long neoId;
@Property(...