apoc.convert

Qualified Name Type

apoc.convert.setJsonProperty(node Node, key String, value Any) - serializes the given JSON object and sets it as a property on the given node.

Procedure

apoc.convert.toTree(paths [Path], lowerCaseRels Boolean, config Map<String, Any>) - returns a stream of maps, representing the given paths as a tree with at least one root.

Procedure

apoc.convert.fromJsonList(list [String], path String, pathOptions [String]) - converts the given JSON list into a Cypher list.

Function

apoc.convert.fromJsonMap(map String, path String, pathOptions [String]) - converts the given JSON map into a Cypher map.

Function

apoc.convert.getJsonProperty(node Node, key String, path String, pathOptions [String]) - converts a serialized JSON object from the property of the given node into the equivalent Cypher structure (e.g. map, list).

Function

apoc.convert.getJsonPropertyMap(node Node, key String, path String, pathOptions [String]) - converts a serialized JSON object from the property of the given node into a Cypher map.

Function

apoc.convert.toJson(value Any) - serializes the given JSON value.

Function

apoc.convert.toList(value Any) - converts the given value into a list.

Function

apoc.convert.toMap(map Any) - converts the given value into a map.

Function

apoc.convert.toNode(node Any) - converts the given value into a node.

Function

apoc.convert.toNodeList(list [Any]) - converts the given value into a list of nodes.

Function

apoc.convert.toRelationship(rel Any) - converts the given value into a relationship.

Function

apoc.convert.toRelationshipList(relList [Any]) - converts the given value into a list of relationships.

Function

apoc.convert.toSet(list [Any]) - converts the given value into a set.

Function

apoc.convert.toSortedJsonMap(value Any, ignoreCase Boolean) - converts a serialized JSON object from the property of a given node into a Cypher map.

Signature

Function