I created some entities and tried to save them to the database. Some of them saved, some of them didn't. But no errors were thrown. I'm going to try to put together an example.
The Person GOES_TO a Place . A Thing is OWNED_BY a Person ....
I managed to make it work. In summary, for some reason Neo4J was not liking that my IDs were Java Longs rather than Strings. When I changed the ID for the Person class to String, it started working. It wasn't throwing errors, and there weren't typ...