apoc.convert.setJsonProperty(node NODE, key STRING, value ANY) - serializes the given JSON object and sets it as a property on the given NODE .
|
|
apoc.convert.toTree(paths LIST<PATH>, lowerCaseRels BOOLEAN, config MAP<STRING, ANY>) - returns a stream of MAP values, representing the given PATH values as a tree with at least one root.
|
Procedure Deprecated in Cypher 5 Removed in Cypher 25
|
apoc.convert.fromJsonList(list LIST<STRING>, path STRING, pathOptions LIST<STRING>) - converts the given JSON list into a Cypher LIST<STRING> .
|
|
apoc.convert.fromJsonMap(map STRING, path STRING, pathOptions LIST<STRING>) - converts the given JSON map into a Cypher MAP .
|
|
apoc.convert.getJsonProperty(node NODE, key STRING, path STRING, pathOptions LIST<STRING>) - converts a serialized JSON object from the property of the given NODE into the equivalent Cypher structure (e.g. MAP , LIST<ANY> ).
|
|
apoc.convert.getJsonPropertyMap(node NODE, key STRING, path STRING, pathOptions LIST<STRING>) - converts a serialized JSON object from the property of the given NODE into a Cypher MAP .
|
|
apoc.convert.toJson(value ANY) - serializes the given JSON value.
|
|
apoc.convert.toList(value ANY) - converts the given value into a LIST<ANY> .
|
Function Deprecated in Cypher 25
|
apoc.convert.toMap(map ANY) - converts the given value into a MAP .
|
|
apoc.convert.toNode(node ANY) - converts the given value into a NODE .
|
|
apoc.convert.toNodeList(list LIST<ANY>) - converts the given value into a LIST<NODE> .
|
|
apoc.convert.toRelationship(rel ANY) - converts the given value into a RELATIONSHIP .
|
|
apoc.convert.toRelationshipList(relList LIST<ANY>) - converts the given value into a LIST<RELATIONSHIP> .
|
|
apoc.convert.toSet(list LIST<ANY>) - converts the given value into a set represented in Cypher as a LIST<ANY> .
|
|
apoc.convert.toSortedJsonMap(value ANY, ignoreCase BOOLEAN) - converts a serialized JSON object from the property of a given NODE into a Cypher MAP .
|
|