Hello everybody!
I have 10 json files with 1.300.000 elements looks like:
{
accounts: [
{ "id": 1, "name": "Alex", "likes" : [{ "id": 5 } .... ] } <- 1.300.000 these elements, where likes array contains
... <- users which got likes
]
}
What way to create all nodes within “like” edge between them in the shortest possible time (max 16 min)?
Docs contains too little information about loading large json
Thanks