Created
June 22, 2022 19:01
-
-
Save mananai/c69e3bd89557f6b93d3b72f8ab263414 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| MATCH (u:User) | |
| WITH u.sccId AS sccId, count(u) AS size, COLLECT(id(u)) AS ids | |
| RETURN sccId, size, ids[0..10] AS First_10_Members | |
| ORDER BY size DESC LIMIT 10; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment