The debug output from OGM parsing 6 simple classes is yielding ~167000 instances of debug messages similar to…
17:30:21.925 [main] DEBUG org.neo4j.ogm.context.GraphEntityMapper - Unable to find a matching @RelationshipEntity for (56992)-[PART_OF]->(56988)
Coupled with the fact that …
- No @RelationshipEntity is declared
- the parsing is taking some time (~30 seconds)
- the majority of the 167000 debug messages seem to be a repetition of the following block…
Unable to find a matching @RelationshipEntity for (56990)-[PART_OF]->(56988)
Unable to find a matching @RelationshipEntity for (56992)-[INSTANCE_OF]->(56990)
Unable to find a matching @RelationshipEntity for (56992)-[REFERS_TO]->(57035)
Unable to find a matching @RelationshipEntity for (56994)-[REFERS_TO]->(57035)
Unable to find a matching @RelationshipEntity for (56994)-[INSTANCE_OF]->(56990)
Unable to find a matching @RelationshipEntity for (56993)-[INSTANCE_OF]->(56990)
Unable to find a matching @RelationshipEntity for (56993)-[PART_OF]->(56988)
Unable to find a matching @RelationshipEntity for (56995)-[PART_OF]->(56988)
Unable to find a matching @RelationshipEntity for (56995)-[REFERS_TO]->(57036)
Unable to find a matching @RelationshipEntity for (56994)-[REFERS_TO]->(57036)
Unable to find a matching @RelationshipEntity for (56994)-[PART_OF]->(56988)
Unable to find a matching @RelationshipEntity for (57055)-[PART_OF]->(56988)
Unable to find a matching @RelationshipEntity for (57055)-[REFERS_TO]->(57037)
leads me to think that perhaps I have made some kind of mistake with the annotation – but I cannot see where the problem is.
Hopefuly someone more experienced with Neo4j OGM can spot my stupid mistake or perhaps this is normal OGM behaviour?? - doesn't feel like it.
Thanks in advance for any bright ideas
Rod