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