Files
secondo/Algebras/PropertyGraph/sample-shakespeare/match3

15 lines
436 B
Plaintext
Raw Normal View History

2026-01-23 17:03:45 +08:00
# 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;