I have a match query which failed to run on Neo4j
match (b)-[]-()
with count(*) as middleNodeRelations,b
match (a)-[]->()
with count(*) as endNodesRelations,a
match(a: html) < -[r1]-(b: html) < -[r2]-(c: html)
where (middleNodeRelations=2) AND (end...