// global-participant-by-profile query for Admin/Employee Profiles call { MATCH (stat:AggregatedParticipantSocialStat) where stat.monthlyListeners is not null return stat ORDER BY stat.monthlyListeners DESC LIMIT 50 + toInteger($skip) } MATCH (stat)-[:HAS_AGGREGATED_PARTICIPANT_SOCIAL_STAT]-()<-[:REPRESENTS]-(gp:GlobalParticipant) WHERE gp.normalizedName <> 'variousartists' RETURN gp SKIP toInteger($skip) LIMIT toInteger($limit)