Skip to content

Instantly share code, notes, and snippets.

@ReedJessen
Last active December 30, 2016 00:34
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/7d18c25991dc821dbb020b1f9c9b1880 to your computer and use it in GitHub Desktop.
Save ReedJessen/7d18c25991dc821dbb020b1f9c9b1880 to your computer and use it in GitHub Desktop.
Create a Person Node, Company Node, and Patent Node in Cypher Query Language
MERGE (a: Person {"node_type": "Person", "full_name":"name"})
MERGE (a: Company {"node_type": "Company", "full_name":"name"})  
MERGE (a: Patent {"node_type": "Patent", "title":"example", "grant_number":"9876541", 
        "publication_number":"20150222884", "application_number":"14611162"})  
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment