Hi,
I am new to neo4j so I have a naïve query to ask.
I am using Fraud detection sandbox, and getting potential fraud rings out of it.
I am using the following query:
MATCH (c:Client)
WITH c.firstPartyFraudGroup AS fpGroupID, collect(c.id) AS fGroup
...