Does this cql
match p=(n)-[*0..6]-(m)
where id(n)=487682 and id(m)= 487671 with p
where ALL(x IN nodes(p)
WHERE SINGLE(y IN nodes(p)
WHERE x=y))
and all(x in nodes(p)[1..length(p)]
where x.name='1444')
and all(x in relationships(p)
where x.RELATIONSHIP_RANK>'67')
return p
can be optimized? When I used this cql to query,it took a long time.Any help would be appriciated.