cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

Error in toturial:

at this toturial: https://graphacademy.neo4j.com/courses/gds-product-introduction/2-graph-management/1-graph-catalog/

`CALL gds.graph.project('my-graph-projection', ['Actor','Movie'], 'ACTED_IN')

should be:

CALL gds.graph.project('my-graph-projection', ['Person','Movie'], 'ACTED_IN')

 

Replace 'Actor' with 'Person'

2 REPLIES 2

The graph projection is from Actor nodes to Movie nodes. Why use Person here?

Specifying Actor labels is also more efficient than specifying Person labels.