java - Relate to an arbitrary Map.Entry in Neo4j using Spring Data Neo4j -
i'm trying store properties nodes in neo4j graph, can reached using spring data rest api. (and later i'd find object same properties in graph.) json representation of object should like
{ //... "properties": { "key": "value" } //... }
the simplest way
@data @nodeentity public class objectwithproperties { //... @relatedto map<string, object> properties; //... }
obviously, not work, map.entry not @nodeentity.
is there easy way achieve this?
there dynamicproperties
field value one-level map of string-value pairs. stored node-properties not relationships other nodes.
Comments
Post a Comment