Skip to content

Commit

Permalink
fixes neo4j-contrib#321 apoc.json.setJsonProperty doesn't exist (neo4…
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniele Berton authored and albertodelazzari committed Jun 28, 2017
1 parent e489d9f commit 2252bfd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/overview.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -186,10 +186,10 @@ RETURN apoc.meta.isType(n.age,"INTEGER") as ageType
| apoc.convert.fromJsonList('[1,2,3]') | converts json list to Cypher list
| apoc.convert.fromJsonMap( '{"a":42,"b":"foo","c":[1,2,3]}') | converts json map to Cypher map
| apoc.convert.toTree([paths]) | creates a stream of nested documents representing the at least one root of these paths
| apoc.json.getJsonProperty(node,key) | converts serialized JSON in property back to original object
| apoc.json.getJsonPropertyMap(node,key) | converts serialized JSON in property back to map
| apoc.convert.getJsonProperty(node,key) | converts serialized JSON in property back to original object
| apoc.convert.getJsonPropertyMap(node,key) | converts serialized JSON in property back to map
| CALL apoc.convert.toTree([paths]) yield value | creates a stream of nested documents representing the at least one root of these paths
| CALL apoc.json.setJsonProperty(node,key,complexValue) | sets value serialized to JSON as property with the given name on the node
| CALL apoc.convert.setJsonProperty(node,key,complexValue) | sets value serialized to JSON as property with the given name on the node
|===

== Export / Import
Expand Down

0 comments on commit 2252bfd

Please sign in to comment.