Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
02-01-2019 06:07 PM
Hey folks,
I'm new in Neo4j and so I'm still playing arround.
The problem: I have a node named person and a node named book. The relationship between the two nodes is called favorite. This relationship has an order how much a person likes the book.
Now I want to return the name of the person, the name of the book and the integer-value how much the person likes the book, but I don't get it.
Thanks a lot,
Paul
Solved! Go to Solution.
02-03-2019 03:17 AM
In general:
MATCH (p:Person)-[fav:FAVORITE]->(b:Book)
RETURN p.name, fav.rating, b.title
Did you check out the Cypher guide
And also the online training under
02-01-2019 07:58 PM
Perhaps you can show us the data in your graph, and also add the queries you've tried so far, that can help us figure out where the misunderstanding is.
02-03-2019 03:17 AM
In general:
MATCH (p:Person)-[fav:FAVORITE]->(b:Book)
RETURN p.name, fav.rating, b.title
Did you check out the Cypher guide
And also the online training under
All the sessions of the conference are now available online