I am using a small Clojure script which batch-inserts nodes to my Neo4j instance. To show these nodes, I am using a spring-based webapp with Spring Data Neo4j. I also created a small domain object which represents the node.
When I insert a node by utilizing the webapp, it will be loaded and showed right out of the box. But when I try to load a node which has been inserted by the external script, it cannot be found. To be compatible, I thought it is sufficient enough to add the _type_ attribute with the FQN of the domain class. But it seems to me, that there's more to do.
I am using Neo4j 1.8.2 server and SDN 2.2.2
Can you give me a hint?
Thanks in advance.
Best, Markus