//Taxonomy queries //Show 10 leaf nodes match (n:Cat7) return n limit 10; //Run up the tree match (n:Cat7) with n limit 1 match p = shortestpath ((n)-[*]-(treetop:Taxonomy)) return p; //Run accross the tree match (n1:Category {id:4829}), (n2:Category {id:3152}), p = allshortestpaths ((n1)-[*]-(n2)) return p limit 10;