Hello i am running neo4j 5.3.0 and gds 2.4
my graph structure is like this
song -- listened_by--> user
my object to make song based community detection
Hence i have gone through gds library documentation and initial graph projection is like this way
Call gds.graph.project
('songGraph',
'Song',
'listened_by',
{relationshipProperties:'listen_count'
});
this gave me the nodecount 94 but no relationship count . so if there is no relationship count of projection i am a bit confused how a community will be detect. i am a novice and any suggestion will be help. is it for different nodes and i have on labeled one nodes here. if so how could i incoroporate user node here . thanks