Files
secondo/Algebras/PropertyGraph2/sample-orderedrelations/sample-shakespeare/match3
2026-01-23 17:03:45 +08:00

15 lines
436 B
Plaintext

# open database pgraph1;
# query p1 loadgraph;
query p1
match3 ['
MATCH
(theater: Venue {Name: "Theatre Royal"}),
(newcastle: City {Name: "Newcastle"}),
(bard: Author {Lastname: "Shakespeare"}),
(newcastle)<-[:CITY]-(street)<-[:STREET]-(theater)<-[:VENUE]-()-[:PERFORMANCE_OF]->()-[:PRODUCTION_OF]->(play)<-[w:WROTE_PLAY]-(bard)
WHERE w.Year > 1608
RETURN w.Year, play.Title AS Play
'] consume;