I am running the following Neo4j Cypher query:
MATCH (n:ARTICLE { article_id: '1234' })-[k:CONNECTS]->(r:ARTICLE)
RETURN n,k,r;
Now I'd like to filter for all those r
nodes that within the matched results have in-degree (ie. degree of (n)-[k]->(r)
) greater than 1. How would I do that?
(I thought this questions is distinct from How to get degree of a node while filtering using MATCH in neo4j , which is why I decided to ask it here.)