Skip to content

Instantly share code, notes, and snippets.

@Hkazanci93
Created November 18, 2021 16:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Hkazanci93/6129ea086e8214ae79e323bdc6dbe86c to your computer and use it in GitHub Desktop.
Save Hkazanci93/6129ea086e8214ae79e323bdc6dbe86c to your computer and use it in GitHub Desktop.
MATCH (them:Person)
MATCH (me:Person {userid:$userid})
WHERE NOT them.userid = $userid
AND them.name STARTS WITH $name
AND NOT (me)-[:friended]->(them)
RETURN them
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment