I want to implement query method which return different paths as a result:
@Query("MATCH p =(michael { name: 'Michael Douglas' })-->() RETURN p")
T getPaths();
I am confused whether method return should be Iterable> as stated here, since the question was posted more then 2 years ago:
@Query("MATCH p =(michael { name: 'Michael Douglas' })-->() RETURN p")
Iterable<Map<String,Object>> getPaths();
Does any one know whether latest version of SDN has different approach for that?