@Query( "START n=node:search({0}) RETURN n")
Iterable<User> doBasicSearch(String query);
--
--
--
--
Hi Michael,Apart from @MapResult, there is other form of Return type Iterable<Map<String,Object>>1.Can i use this return type to return one column and one entity?
For ex: Query("START n=node:username(username= {0}) MATCH n-[]-user RETURN n.name, user"). Can i use Iterable<Map<String, Object>> for above query. Or do i need to use @MapResult even for this?
2. In Neo4j(.i.e.without using SDN), Map is results of column names with the respective data. But, in case of SDN, they will be directly associated to @NodeEntity, so what could be the use cases where we can use Iterable<Map<String, Object>>.
--
--
--