https://github.com/famousdraw

Cypher Fundamentals-Retrieving Nodes

CHALLENGE

Retrieving Nodes

Now for a challenge.

We are interested in .

When was Kevin Bacon born?

Modify the query in the Neo4j Browser window to the right of the screen to find the year that  was born. This value is stored in the  property.

Once you have found the correct year, enter the value below and click Check Answer.

 

//查找' Kevin Bacon'的年龄
MATCH (p:Person)
WHERE p.name='Kevin Bacon'
RETURN p.born

posted on 2022-05-04 14:46  红色MINI  阅读(74)  评论(0编辑  收藏  举报

导航