Querying with counting
Find Actions used in more than 20 statements
MATCH (s:Statement)-[:HAS_ACTION]-(a:Action)
WITH a, COUNT(DISTINCT s) AS st_count
WHERE st_count > 20
RETURN a.uuid as action_id, a.name as action_label, st_count as statement_count
No comments to display
No comments to display