Hello community,
I am new to neo4j and I'm trying to get a list of nodes (that has not a specific relation) and count node name duplicates.
Query:
MATCH (e:ExampleNode)
WHERE NOT exists((e)-[:EXAMPLE_REL]->())
RETURN e.name as name, count(e.name) as...