Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion site/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -879,7 +879,7 @@ <h4>Learn</h4>
const EXAMPLES = [
{ label: "Actors of 1999", q: `MATCH (p:Person)-[:ACTED_IN]->(m:Movie)\nWHERE m.released = 1999\nRETURN p.name, m.title` },
{ label: "Directors", q: `MATCH (p:Person)-[:DIRECTED]->(m:Movie)\nRETURN m.title AS movie, p.name AS director` },
{ label: "Keanu's co-stars", q: `MATCH (a:Person)-[:ACTED_IN]->(m:Movie),\n (b:Person)-[:ACTED_IN]->(m)\nWHERE a.name = 'Keanu Reeves'\nRETURN b.name AS costar, m.title AS film` },
{ label: "Keanu's co-stars", q: `MATCH (a:Person)-[:ACTED_IN]->(m:Movie),\n (b:Person)-[:ACTED_IN]->(m)\nWHERE a.name = 'Keanu Reeves' AND b.name != 'Keanu Reeves'\nRETURN b.name AS costar, m.title AS film` },
{ label: "Reviews + ratings", q: `MATCH (p:Person)-[r:REVIEWED]->(m:Movie)\nRETURN m.title AS film, r.rating AS rating` },
{ label: "Count movies", q: `MATCH (m:Movie) RETURN count(m) AS movies` },
{ label: "Whole nodes", q: `MATCH (m:Movie) WHERE m.released > 2005 RETURN m` },
Expand Down