cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

Too few results

hahmed24
Node

hi there, 

 basically, I am counting the paths between node X-->A, X-->B, and X-->C, and returning them at the same time. To do this I used path expand all. I placed each path count as a subquery. 

match X
match A
match B
match C

call { path expand X-->A}

call {path expand X-->B}

call {path expand X-->C}

return.........

i am expecting thousands of rows but I only get seventeen or so. the list is different every time i run it which is what i want, it is just too small. if i run the paths separately i end up with thousands. is it an issue of run time or any constraint i could fix. 
here is the plan.. the Estimated Rows should be 10000 but i only get 17

plan22.png

 

1 REPLY 1

Can you post the actual query?