Skip to content

Instantly share code, notes, and snippets.

@mananai
Created June 22, 2022 19:01
Show Gist options
  • Select an option

  • Save mananai/c69e3bd89557f6b93d3b72f8ab263414 to your computer and use it in GitHub Desktop.

Select an option

Save mananai/c69e3bd89557f6b93d3b72f8ab263414 to your computer and use it in GitHub Desktop.
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