apoc.json.path
Function APOC Core
apoc.json.path('{json}','json-path')
Usage Examples
The examples in this section are based on the following sample graph:
CREATE (:Person {json:'{a:[1,2,3]}'});
MATCH (p:Person)
RETURN apoc.json.path(p.json, "$.a") AS output;
Output |
---|
[1, 2, 3] |
Was this page helpful?