I want to query nodes that have a relation to eachother and return them, including the relation.
Example from the Movies dataset:
@Query("MATCH (actor:Person)-[actedIn:ACTED_IN]->(movie:Movie) WHERE ID(movie) = $movie.__id__ RETURN actor, actedIn, mo...