Skip to content
This repository has been archived by the owner on Jun 2, 2020. It is now read-only.

Update mystic-river dataset #4

Open
whatSocks opened this issue Jun 23, 2016 · 0 comments
Open

Update mystic-river dataset #4

whatSocks opened this issue Jun 23, 2016 · 0 comments

Comments

@whatSocks
Copy link

mystic-river should be able to handle the following queries:

MATCH (kevin:Person)
WHERE kevin.name = "Kevin Bacon"
WITH  kevin
MERGE (kevin)-[r:ACTED_IN {roles:["Sean"]}]->(movie:Movie {title: "Mystic River", released:1993})
RETURN movie,r, kevin
MATCH (m:Movie)
WHERE m.title = "Mystic River"
SET m.tagline = "We bury our sins here, Dave. We wash them clean."
RETURN m.title AS title, m.tagline AS tagline
MATCH (m:Movie)
WHERE m.title = "Mystic River"
SET m.released = 2003
RETURN m.title AS title, m.released AS released
MATCH (kevin)-[r:ACTED_IN]->(mystic)
WHERE kevin.name="Kevin Bacon"
AND mystic.title="Mystic River"
SET r.roles = ["Sean Devine"]
RETURN r
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant