Transactions and relationship entities mapping problems with Neo4j OGM
问题 Versions used: spring-data-neo4j 4.2.0-BUILD-SNAPSHOT / neo4j-ogm 2.0.6-SNAPSHOT I'm having problems to correctly fetch relationship entities . The following fetch calls don't return consistent results (executed in the same transaction): session.query("MATCH (:A)-[b:HAS_B]-(:C) RETURN count(b) as count") returns 1 session.query("MATCH (:A)-[b:HAS_B]-(:C) RETURN b") correctly returns the relationship entity as a RelationshipModel object session.query(B.class, "MATCH (:A)-[b:HAS_B]-(:C) RETURN