Hi,
Looking at the Native Projection section on Neo4j Documentation, I have seen this example:
// will use nodes projected as 'Person' or 'City' in 'myGraph'
CALL gds.pageRank.stats('myGraph', {nodeLabels: ['Person', 'City']})
What is the correct sy...