You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you run the cypher query on Neo4J Engine this is the result : Neo.ClientError.Statement.SyntaxError
If you put quotes to the value of the title property then you have the result: (no changes, no records)
But the result shown in the popoto result panel is: name:Tom Tykwer
born:1965
But the correct syntax of the Cypher query that produces the last result is this:
MATCH (person:Person), (person:Person)-[:DIRECTED]->(movie1:Movie) WHERE (movie1.title = "Cloud Atlas") AND (NOT (person:Person)-[:PRODUCED]->(:Movie{title:"Ninja Assassin"})) RETURN person
So you have to remove the following part in the MATCH: , (person:Person)-[:PRODUCED]->(movie2:Movie)
And that Cypher query is the right one that gives the desired result.
The text was updated successfully, but these errors were encountered:
In this example:
When you run the cypher query on Neo4J Engine this is the result :
Neo.ClientError.Statement.SyntaxError
If you put quotes to the value of the title property then you have the result:
(no changes, no records)
But the result shown in the popoto result panel is:
name:Tom Tykwer
born:1965
But the correct syntax of the Cypher query that produces the last result is this:
MATCH (person:
Person
), (person:Person
)-[:DIRECTED
]->(movie1:Movie
) WHERE (movie1.title = "Cloud Atlas") AND (NOT (person:Person
)-[:PRODUCED
]->(:Movie
{title:"Ninja Assassin"})) RETURN personSo you have to remove the following part in the MATCH:
, (person:
Person
)-[:PRODUCED
]->(movie2:Movie
)And that Cypher query is the right one that gives the desired result.
The text was updated successfully, but these errors were encountered: