Skip to content

Instantly share code, notes, and snippets.

@ReedJessen
Created December 30, 2016 01:30
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 ReedJessen/9b81435bd7a43be43770b2691c17cc0a to your computer and use it in GitHub Desktop.
Save ReedJessen/9b81435bd7a43be43770b2691c17cc0a to your computer and use it in GitHub Desktop.
Query what patent's Rony Abovitz is not an inventor on
MATCH (a:Person)-[r:Invented]->(b:Patent)
MATCH (u:Person {full_name:'Abovitz, Rony'})
WHERE  not (u)-[:Invented]-(b) 
RETURN r
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment