I am trying to create a node only if the key exists in my json file. However, it is only able to create some nodes but not all
call apoc.load.json($url) yield value
unwind value as q
merge (report:Report {filename:q.filename})
ON CREATE SET report....