apoc.create.uuidBase64ToHex
Function
apoc.create.uuidBase64ToHex(base64Uuid String)
- takes the given base64 encoded UUID and returns it as a hexadecimal string.
Usage Examples
The following converts a UUID encoded with Base64 to HEX representation:
RETURN apoc.create.uuidBase64ToHex("vX8dM5XoSe2ldoc/QzMEyw") as output;
Output |
---|
"bd7f1d33-95e8-49ed-a576-873f433304cb" |
Was this page helpful?