Created
November 6, 2018 18:57
-
-
Save conker84/94ce861a3810e6718803b9c7e0944854 to your computer and use it in GitHub Desktop.
This file contains 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
{ | |
"list": [ | |
[{ | |
"id": 0, | |
"type": "relationship", | |
"label": "KNOWS", | |
"properties": { | |
"since": 1993 | |
}, | |
"start": { | |
"id": 0, | |
"labels": ["User"], | |
"properties": { | |
"born": "2015-07-04T19:32:24", | |
"name": "Adam", | |
"place": { | |
"crs": "wgs-84", | |
"latitude": 33.46789, | |
"longitude": 13.1, | |
"height": null | |
}, | |
"age": 42, | |
"male": true, | |
"kids": ["Sam", "Anna", "Grace"] | |
} | |
}, | |
"end": { | |
"id": 1, | |
"labels": ["User"], | |
"properties": { | |
"name": "Jim", | |
"age": 42 | |
} | |
} | |
}] | |
] | |
} |
This file contains 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
{ | |
"list": [{ | |
"id": 0, | |
"type": "relationship", | |
"label": "KNOWS", | |
"properties": { | |
"since": 1993 | |
}, | |
"start": { | |
"id": 0, | |
"labels": ["User"] | |
}, | |
"end": { | |
"id": 1, | |
"labels": ["User"] | |
} | |
}] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment