HI all ,
I'm running into an issue which is the opposite of what most people want when using the Neo4j Browser.
Given a simple query like this just returns top 40 users, in the browser I can chekc the Connect Result nodes box to show the relationships between the nodes in the result set. I understand this is a second query done under the hood. My question is how would I reproduce it in cypher. The idea is to save this query in Neo4j bloom so i can get top 40 users and the relationships between them. I've tried referencing (n) as a subquery but cant get a way to quite do it.
match (n:User)
where n.Verified = 'false'
return n
order by n.followers DESC
Limit 40
Thank you