apoc.util.sha256

Details

Syntax

apoc.util.sha256(values)

Description

Returns the SHA256 of the concatenation of all STRING values in the given LIST<ANY>.

Arguments

Name

Type

Description

values

LIST<ANY>

The list of values to concatenate and generate a sha256 checksum from.

Returns

STRING

Usage Examples

RETURN apoc.util.sha256(["Michael"]) AS output;
Results
output

"f089eaef57aba315bc0e1455985c0c8e40c247f073ce1f4c5a1f8ffde8773176"