Hi,
I am trying to match node of a specific type (lets say - car) and its related nodes (like - make, model etc) and limiting the results to 10 nodes, But the limit is not working as expected.
Related nodes can range from 5-15 in number. But I want 10 car nodes with all its related nodes. Running this query -
match (n:car)-[r]->(m) return n,r,m limit 10
How can I get desired result using a single query ?
Thanks.