Last active
July 12, 2021 11:22
-
-
Save adhadse/faa27786019c73d30ab5671fd63e7855 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE | |
(India:Location {name: 'India', type: 'country'}), | |
(Gujrat:Location {name: 'Gujrat', type: 'state'}), | |
(Indore:Location {name: 'Indore', type: 'city'}), | |
(Rahul:Person {name: 'Rahul'}), | |
(TS:Company {name: 'Tiger Softwares', profession: 'Application Developer'} | |
(Rahul) -[:WITHIN]-> (Indore) -[:WITHIN]-> (Gujrat) -[:WITHIN]-> (India) | |
(Rahul) -[:WORKS_IN]-> (TS) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment