-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbatch_upload_data.json
50 lines (50 loc) · 1.13 KB
/
batch_upload_data.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"nodes": [
{
"labels":["Person"],
"key":"uid",
"records":[
{
"uid":"abc",
"name": "John Wick"
},
{
"uid":"bcd",
"name":"Cane"
}
]
},
{
"labels":["Dog"],
"key": "gid",
"records":[
{
"gid":"abc",
"name": "Daisy"
}
]
}
],
"relationships": [
{
"type":"loves",
"from_node": {
"record_key":"_from_uid",
"node_key":"uid",
"node_label":"Person"
},
"to_node": {
"record_key":"_to_gid",
"node_key":"gid",
"node_label": "Dog"
},
"exclude_keys":["_from_uid", "_to_gid"],
"records":[
{
"_from_uid":"abc",
"_to_gid":"abc"
}
]
}
]
}