I wanna test simple graph analysis performance among GraphDBes using cypher.
I referred this site and reproduce the example in Neo4j, Agensgraph, SAP HANA, and Redis.
but the cypher query(see below) is not operate in Agensgraph, and SAP HANA.
MATCH (p1:Person {name:'Michael Sherman'})-[r1:RATED]->(m:Movie)<-[r2:RATED]-(p2:Person {name:'Michael Hunger'}) RETURN m.name AS Movie, r1.rating AS `M. Sherman's Rating`, r2.rating AS `M. Hunger's Rating`
I think the second arrow pattern doesn't works in Agensgraph, and SAP HANA.
How can I edit this query to operate in Agensgraph, and SAP HANA?