When upgrading from spring-data-neo4j 8.0.5 to 8.0.6 (as part of Spring Boot 4.0.6 -> 4.0.7 upgrade), it looks like Neo4jTemplate#findById is not populating the list fields mapped as incoming relationships.
For example, this list is always empty with 8.0.6, while contains the expected elements with 8.0.5.
The data returned by the query
MATCH (n:PushTask)-[r]-(m)
WHERE n.id='af558be4-9d2f-4359-bf85-a554e6e90be1'
RETURN n,r,m
is the same.
Is there anything relevant that might have changed between those versions?
Thank you in advance.
Regards.