Is it currently possible to do a query in RedisGraph for match intersections given the current Cypher limitations?
Eg something equivalent to the following Cypher script that would return countries that have been visited by both Mor Yesharim and Noam Nativ:
MATCH (p:Person)-[x:VISITED]->(c:Country)
WHERE p.name = 'Mor Yesharim' OR p.name = 'Noam Nativ'
WITH c, count(DISTINCT p) as cnt
WHERE cnt = 2
RETURN c