You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SELECT
*
FROM
ag_catalog.cypher (
'chunk_entity_relation', $$ MATCH ( n ) OPTIONAL MATCH ( n ) -[ r ]- ( ) WITH n,
COUNT ( r ) AS DEGREE RETURN n,
DEGREE
ORDER BY
DEGREE DESC
LIMIT 1000 $$
) AS ( n agtype, DEGREE agtype );