I\'ve a query that fetches nodes based on a property
MATCH (c { type: \'sometype\' }) WITH c LIMIT 100 RETURN c
all I want is to also fetch
The most fastest way that i found is:
MATCH (n:NodeName {param:"7"}) with n skip 0 limit 5 MATCH n-[r]->(k) with n,k,r
Also you can decrease execution time if for example instead of n,k,r will use n.data,r.data, k.data
This was tested on Neo4j 2.3