apoc.create.uuidBase64ToHex

Details

Syntax

apoc.create.uuidBase64ToHex(base64Uuid)

Description

Takes the given base64 encoded UUID and returns it as a hexadecimal STRING.

Arguments

Name

Type

Description

base64Uuid

STRING

The string representing a UUID encoded with Base64.

Returns

STRING

Usage Examples

The following converts a UUID encoded with Base64 to HEX representation:

RETURN apoc.create.uuidBase64ToHex("vX8dM5XoSe2ldoc/QzMEyw") as output;
Results
Output

"bd7f1d33-95e8-49ed-a576-873f433304cb"