apoc.util.sha256
Function
apoc.util.sha256(values [Any])
- returns the SHA256 of the concatenation of all string values in the given list.
Usage Examples
RETURN apoc.util.sha256(["Michael"]) AS output;
output |
---|
"f089eaef57aba315bc0e1455985c0c8e40c247f073ce1f4c5a1f8ffde8773176" |
Was this page helpful?