apoc.load.jsonArray
Procedure APOC Core
apoc.load.jsonArray('url') YIELD value - load array from JSON URL (e.g. web-api) to import JSON as stream of values
Usage Examples
map.json
contains a JSON document representing a person and their children.
map.json
{
"foo":[1,2,3]
}
We’ll place this file into the import
directory of our Neo4j instance.
Let’s now write a query using the apoc.load.jsonArray
procedure to explore this file.
The following query processes map.json
and returns the content as Cypher data structures
CALL apoc.load.jsonArray("file:///map.json", "$.foo");
value |
---|
[1, 2, 3] |
Was this page helpful?