Execute the code:
CALL gds.alpha.betweenness.sampled.stream({ nodeProjection: "User", relationshipProjection: "FOLLOWS", strategy:"degree"
})
YIELD nodeId, centrality
RETURN gds.util.asNode(nodeId).id AS user, centrality ORDER BY centrality DESC;
Err...