Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
12-16-2020 03:38 PM
Hi, let's assume that i have a json file like below:
{
"Laptop": "Lenovo",
"Price": "500$",
"Properties" : {
"RAM": "4GB DDR4",
"SSD": "500GB"
}
}
How i can create the correct graph with the node A for the primary properties and the node B (connected to A) for the secondary properties inside the "Properties".
call apoc.load.json("...")
yield value
merge (a:Laptop{name:value.Laptop, price:value.Price})
Then what ??
Solved! Go to Solution.
12-16-2020 04:56 PM
Next Step:
merge (b:Properties{ssd: value.Properties.SSD, ram: value.Properties.RAM})
12-16-2020 04:56 PM
Next Step:
merge (b:Properties{ssd: value.Properties.SSD, ram: value.Properties.RAM})
All the sessions of the conference are now available online