How to list the most used values?

Hi :slight_smile:
An example for key21:

  1. retaining value as a link
LIST WITHOUT ID K + ": " + length(rows)
WHERE key21
FLATTEN key21
GROUP BY key21 AS K
SORT length(rows) DESC
  1. value as a string
LIST WITHOUT ID meta(K).path + ": " + length(rows)
WHERE key21
FLATTEN key21
GROUP BY key21 AS K
SORT length(rows) DESC
1 Like