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
MATCH (w:Word)-[:APPEARED_IN]->(t:Talk)
WHERE NOT EXISTS(w.is_stop_word)
WITH w, count(t) as rels
RETURN w.normalized_text AS text, rels AS appearances
ORDER BY rels DESC
LIMIT 100